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