interface StatusPillProps { text: string; variant?: 'active' | 'success' | 'info'; } const dotColors: Record = { active: 'bg-[#68f349]', success: 'bg-[#68f349]', info: 'bg-white/50', }; export function StatusPill({ text, variant = 'info' }: StatusPillProps) { return (
{text}
); }