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