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