import { cn } from '@/lib/utils'; import { cva, type VariantProps } from 'class-variance-authority'; import { CircleSmall } from 'lucide-react'; const dotVariants = cva('', { variants: { variant: { neutral: 'fill-neutral-900', active: 'fill-red-600 stroke-red-600', hidden: 'hidden', }, }, defaultVariants: { variant: 'hidden', }, }); function NotificationDot({ className, dotVariant, ...props }: { className: string; dotVariant: VariantProps['variant']; }) { return ( ); } export type NDot = VariantProps['variant']; export { NotificationDot, dotVariants };