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