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