Function
DialogTitle
({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>)
Source from the content-addressed store, hash-verified
| 129 | } |
| 130 | |
| 131 | function DialogTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>) { |
| 132 | return ( |
| 133 | <DialogPrimitive.Title |
| 134 | data-slot="dialog-title" |
| 135 | className={cn("text-lg leading-none font-semibold", className)} |
| 136 | {...props} |
| 137 | /> |
| 138 | ); |
| 139 | } |
| 140 | |
| 141 | function DialogDescription({ |
| 142 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected