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