Function
DialogFooter
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 57 | DialogHeader.displayName = "DialogHeader"; |
| 58 | |
| 59 | const DialogFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 60 | <div className={cn("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", className)} {...props} /> |
| 61 | ); |
| 62 | DialogFooter.displayName = "DialogFooter"; |
| 63 | |
| 64 | const DialogTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected