Function
AlertDialogTitle
({
className,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Title>)
Source from the content-addressed store, hash-verified
| 110 | } |
| 111 | |
| 112 | function AlertDialogTitle({ |
| 113 | className, |
| 114 | ...props |
| 115 | }: React.ComponentProps<typeof AlertDialogPrimitive.Title>) { |
| 116 | return ( |
| 117 | <AlertDialogPrimitive.Title |
| 118 | data-slot="alert-dialog-title" |
| 119 | className={cn( |
| 120 | "text-sm font-medium sm:group-data-[size=default]/alert-dialog-content:group-has-data-[slot=alert-dialog-media]/alert-dialog-content:col-start-2", |
| 121 | className |
| 122 | )} |
| 123 | {...props} |
| 124 | /> |
| 125 | ); |
| 126 | } |
| 127 | |
| 128 | function AlertDialogDescription({ |
| 129 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected