Function
DialogFooter
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 70 | DialogHeader.displayName = "DialogHeader" |
| 71 | |
| 72 | const DialogFooter = ({ |
| 73 | className, |
| 74 | ...props |
| 75 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 76 | <div |
| 77 | className={cn( |
| 78 | "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", |
| 79 | className |
| 80 | )} |
| 81 | {...props} |
| 82 | /> |
| 83 | ) |
| 84 | DialogFooter.displayName = "DialogFooter" |
| 85 | |
| 86 | const DialogTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected