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