Function
AlertDialogFooter
({
className,
...props
}: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 77 | } |
| 78 | |
| 79 | function AlertDialogFooter({ |
| 80 | className, |
| 81 | ...props |
| 82 | }: React.ComponentProps<"div">) { |
| 83 | return ( |
| 84 | <div |
| 85 | data-slot="alert-dialog-footer" |
| 86 | className={cn( |
| 87 | "flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", |
| 88 | className |
| 89 | )} |
| 90 | {...props} |
| 91 | /> |
| 92 | ) |
| 93 | } |
| 94 | |
| 95 | function AlertDialogTitle({ |
| 96 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected