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