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