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