import React, {FunctionComponent} from 'react'; import {WithStyled} from '~/utils/style'; type IconProps = { type: string; onClick?: () => unknown; }; const Icon: FunctionComponent = ({type, onClick, className}) => { return onClick?.()} />; }; export default Icon;