diff --git a/src/components/common/CreatorListGroupSeparator.tsx b/src/components/common/CreatorListGroupSeparator.tsx new file mode 100644 index 0000000..9c6de50 --- /dev/null +++ b/src/components/common/CreatorListGroupSeparator.tsx @@ -0,0 +1,40 @@ +import { cn } from '@/lib/utils'; + +interface CreatorListGroupSeparatorProps { + label: string; + className?: string; +} + +/** + * Visual separator with label between creator list groups (e.g., pinned vs unpinned). + * Spans the full grid width and includes an accessible label. + */ +const CreatorListGroupSeparator: React.FC = ({ + label, + className, +}) => { + return ( +
+