"use client"; import { ChevronDown } from "lucide-react"; import { cls } from "@/lib/utils"; interface MultiSelectProps { label: string; options: string[]; selectedOptions: string[]; onToggle: (option: string) => void; ariaLabel?: string; className?: string; } const MultiSelect = ({ label, options, selectedOptions, onToggle, ariaLabel, className = "", }: MultiSelectProps) => { return (
); }; export default MultiSelect;