import { X } from "lucide-react"; import { cn } from "../lib/utils"; interface LabelChipProps { name: string; color: string; description?: string; className?: string; onRemove?: () => void; } export function LabelChip({ name, color, description, className, onRemove }: LabelChipProps) { return ( {name} {onRemove && ( )} ); }