import { FC } from 'react' import styles from './Icon.module.css' import cx from 'classnames' interface Props { className?: string classBody?: string classClick?: string } export const LeftClickIcon: FC = ({ className, classBody, classClick }) => { return ( ) }