Files
alla-allaos-fullstack/src/features/crm/activities/components/activity-badge.tsx
phaichayon 9ae4f31f28 task-ep.1.1
2026-07-10 10:33:45 +07:00

7 lines
311 B
TypeScript

import { Badge } from '@/components/ui/badge';
import { formatCrmActivityLabel, type CrmActivityType } from '@/features/crm/activity/types';
export function ActivityBadge({ activityType }: { activityType: CrmActivityType }) {
return <Badge variant='outline'>{formatCrmActivityLabel(activityType)}</Badge>;
}