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