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