Function
DialogFooter
({ className, ...props }: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 86 | DialogHeader.displayName = 'DialogHeader' |
| 87 | |
| 88 | const DialogFooter = ({ className, ...props }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 89 | <div |
| 90 | className={cn('flex flex-col-reverse gap-2 sm:flex-row sm:justify-end', className)} |
| 91 | {...props} |
| 92 | /> |
| 93 | ) |
| 94 | DialogFooter.displayName = 'DialogFooter' |
| 95 | |
| 96 | const DialogTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected