14 lines
401 B
TypeScript
14 lines
401 B
TypeScript
import { IconPointFilled } from '@tabler/icons-react';
|
|
import { colors } from '@/constants';
|
|
|
|
export default function SectionLabel({ label }: { label: string }) {
|
|
return (
|
|
<div>
|
|
<h2 className="text-sm font-semibold uppercase tracking-wide text-neutral-400 flex gap-1 items-center">
|
|
<IconPointFilled color={colors.accent}/>
|
|
{label}
|
|
</h2>
|
|
</div>
|
|
);
|
|
}
|