import { FC } from 'react'; interface IconCaretDownProps { className?: string; } const IconCaretDown: FC = ({ className }) => { return ( ); }; export default IconCaretDown;