import { FC } from 'react'; const WindowIcon: FC<{ fill?: string }> = ({ fill = '#F5B941' }) => { return ( ); }; export default WindowIcon;