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