Function
SectionLabel
({
children,
className,
}: {
children: React.ReactNode;
className?: string;
})
Source from the content-addressed store, hash-verified
| 62 | } |
| 63 | |
| 64 | export function SectionLabel({ |
| 65 | children, |
| 66 | className, |
| 67 | }: { |
| 68 | children: React.ReactNode; |
| 69 | className?: string; |
| 70 | }) { |
| 71 | return ( |
| 72 | <span |
| 73 | className={cn( |
| 74 | 'text-xs uppercase tracking-wider text-muted-foreground font-medium', |
| 75 | className, |
| 76 | )} |
| 77 | > |
| 78 | {children} |
| 79 | </span> |
| 80 | ); |
| 81 | } |
Callers
nothing calls this directly
Tested by
no test coverage detected