Function
AlertDialogFooter
({
className,
...props
}: React.HTMLAttributes<HTMLDivElement>)
Source from the content-addressed store, hash-verified
| 60 | AlertDialogHeader.displayName = "AlertDialogHeader" |
| 61 | |
| 62 | const AlertDialogFooter = ({ |
| 63 | className, |
| 64 | ...props |
| 65 | }: React.HTMLAttributes<HTMLDivElement>) => ( |
| 66 | <div |
| 67 | className={cn( |
| 68 | "flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", |
| 69 | className |
| 70 | )} |
| 71 | {...props} |
| 72 | /> |
| 73 | ) |
| 74 | AlertDialogFooter.displayName = "AlertDialogFooter" |
| 75 | |
| 76 | const AlertDialogTitle = React.forwardRef< |
Callers
nothing calls this directly
Tested by
no test coverage detected