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