Function
DialogTitle
({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>)
Source from the content-addressed store, hash-verified
| 138 | } |
| 139 | |
| 140 | function DialogTitle({ className, ...props }: React.ComponentProps<typeof DialogPrimitive.Title>) { |
| 141 | return ( |
| 142 | <DialogPrimitive.Title |
| 143 | data-slot="dialog-title" |
| 144 | className={cn("text-lg leading-none font-semibold", className)} |
| 145 | {...props} |
| 146 | /> |
| 147 | ); |
| 148 | } |
| 149 | |
| 150 | function DialogDescription({ |
| 151 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected