Function
AlertDialogMedia
({
className,
...props
}: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 94 | } |
| 95 | |
| 96 | function AlertDialogMedia({ |
| 97 | className, |
| 98 | ...props |
| 99 | }: React.ComponentProps<"div">) { |
| 100 | return ( |
| 101 | <div |
| 102 | data-slot="alert-dialog-media" |
| 103 | className={cn( |
| 104 | "bg-muted mb-2 inline-flex size-10 items-center justify-center rounded-none sm:group-data-[size=default]/alert-dialog-content:row-span-2 *:[svg:not([class*='size-'])]:size-6", |
| 105 | className |
| 106 | )} |
| 107 | {...props} |
| 108 | /> |
| 109 | ); |
| 110 | } |
| 111 | |
| 112 | function AlertDialogTitle({ |
| 113 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected