import React from 'react'; import { Icon } from '@/components/icon/Icon'; import { cn } from '@/lib/utils'; import type { CollapsedActivityState } from './collapsedActivityState'; export function CollapsedActivityIndicator({ state, activeLabel, unreadLabel, className, }: { state: Exclude; activeLabel: string; unreadLabel: string; className?: string; }): React.ReactNode { const label = state === 'active' ? activeLabel : unreadLabel; if (state === 'active') { return ( ); } return ( ); }