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