Function
AlertDialogTitle
({
className,
...props
}: React.ComponentProps<typeof AlertDialogPrimitive.Title>)
Source from the content-addressed store, hash-verified
| 93 | } |
| 94 | |
| 95 | function AlertDialogTitle({ |
| 96 | className, |
| 97 | ...props |
| 98 | }: React.ComponentProps<typeof AlertDialogPrimitive.Title>) { |
| 99 | return ( |
| 100 | <AlertDialogPrimitive.Title |
| 101 | data-slot="alert-dialog-title" |
| 102 | className={cn("text-lg font-semibold", className)} |
| 103 | {...props} |
| 104 | /> |
| 105 | ) |
| 106 | } |
| 107 | |
| 108 | function AlertDialogDescription({ |
| 109 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected