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