"use client"; import { X } from "lucide-react"; import { cn } from "@/lib/utils"; type FilterChipProps = { label: string; onRemove: () => void; className?: string; }; export function FilterChip({ label, onRemove, className }: FilterChipProps) { return ( {label} ); }