import { cn } from '@/utils/cn'; interface DotProps { className?: string; size?: number; animated?: boolean; } function filterCn(filter: string[], className: string | undefined) { const split: string[] = className?.split(' ') || []; return split .filter((item) => !filter.some((filterItem) => item.startsWith(filterItem))) .join(' '); } export function Dot({ className, size = 8, animated }: DotProps) { const style = { width: size, height: size, }; return (
); }