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