interface IconProps { className?: string; } function ChevronDownIcon({ className }: IconProps) { return ( ); } export default ChevronDownIcon;