import Badge from '@/components/Badge'; import { cn } from '@/lib/helper'; import { Color } from '@/types/theme'; interface StatusBadgeProps { color: Color; text: string; className?: { badge?: string; status?: string; }; } const StatusBadge = ({ color = 'neutral', text, className, }: StatusBadgeProps) => { return ( {text} ); }; export default StatusBadge;