import { cn } from '@/lib/utils'; export interface ChipProps { label?: string; value: string; color?: 'gray' | 'blue' | 'yellow' | 'purple'; className?: string; } const Chip: React.FC = ({ label, value, className, color = 'gray', }) => { return (
{label && {label} :} {value}
); }; export default Chip;