import { FC } from 'react'; interface IconCaretsDownProps { className?: string; fill?: boolean; } const IconCaretsDown: FC = ({ className, fill = false }) => { return ( <> {!fill ? ( ) : ( )} ); }; export default IconCaretsDown;