Function
DialogTitle
({
className,
...props
}: React.ComponentProps<typeof DialogPrimitive.Title>)
Source from the content-addressed store, hash-verified
| 161 | } |
| 162 | |
| 163 | function DialogTitle({ |
| 164 | className, |
| 165 | ...props |
| 166 | }: React.ComponentProps<typeof DialogPrimitive.Title>) { |
| 167 | return ( |
| 168 | <DialogPrimitive.Title |
| 169 | data-slot="dialog-title" |
| 170 | className={cn('text-lg leading-none font-semibold', className)} |
| 171 | {...props} |
| 172 | /> |
| 173 | ); |
| 174 | } |
| 175 | |
| 176 | function DialogDescription({ |
| 177 | className, |
Callers
nothing calls this directly
Tested by
no test coverage detected