8 lines
221 B
TypeScript
8 lines
221 B
TypeScript
export function SectionLabel({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<h2 className="mb-12 text-[11px] font-medium uppercase tracking-[0.3em] text-muted-foreground">
|
|
{children}
|
|
</h2>
|
|
);
|
|
}
|