Files
AboutMe/components/section-label.tsx
T
2026-08-19 18:05:20 +08:00

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>
);
}