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