@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
30 lines (29 loc) • 2.26 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path, Defs, ClipPath } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill="none" viewBox="0 0 40 40" width={size} height={size} {...props}>
<G clipPath="url(#a)">
<Path fill="#FFDA44" d="M20 40c11.046 0 20-8.954 20-20S31.046 0 20 0 0 8.954 0 20s8.954 20 20 20"/>
<Path fill="#A2001D" d="M8.728 3.478A19.9 19.9 0 0 1 20 0c4.182 0 8.063 1.284 11.272 3.478L20 4.348z"/>
<Path fill="#0052B4" d="m20 20-1.276-1.276-.34.607z"/>
<Path fill="#496E2D" d="M5.858 5.858c-7.81 7.81-7.81 20.474 0 28.284L20 20zM34.142 5.858c7.81 7.81 7.81 20.474 0 28.284L20 20z"/>
<Path fill="#A2001D" d="M20 26.956a6.956 6.956 0 1 0 0-13.913 6.956 6.956 0 0 0 0 13.913"/>
<Path fill="#FFDA44" d="m20 13.043 1.56 4.8h5.046l-4.082 2.966 1.559 4.8L20 22.642l-4.082 2.967 1.56-4.8-4.084-2.966h5.047z"/>
<Path fill="#A2001D" d="M20.006 0h-.013A19.94 19.94 0 0 0 5.858 5.857h28.283A19.94 19.94 0 0 0 20.006 0M5.858 34.143A19.94 19.94 0 0 0 20 40a19.94 19.94 0 0 0 14.141-5.857z"/>
<Path fill="#FFDA44" d="m20 2.174.323.996h1.048l-.848.616.324.997L20 4.167l-.847.616.324-.997-.848-.616h1.048zM15.15 2.174l.324.996h1.047l-.847.616.324.997-.848-.616-.848.616.324-.997-.848-.616h1.048zM24.85 2.174l.324.996h1.047l-.847.616.324.997-.848-.616-.848.616.324-.997-.848-.616h1.048zM20 35.217l.323.997h1.048l-.848.616.324.996L20 37.21l-.847.616.324-.996-.848-.616h1.048zM15.15 35.217l.324.997h1.047l-.847.616.324.996-.848-.616-.848.616.324-.996-.848-.616h1.048zM24.85 35.217l.324.997h1.047l-.847.616.324.996-.848-.616-.848.616.324-.996-.848-.616h1.048zM6.094 19.67a1.74 1.74 0 0 1-2.94 1.86c-.93-1.47-.39-3.87-.39-3.87s2.4.54 3.33 2.01"/>
<Path fill="#A2001D" d="M5.09 22.204a.87.87 0 1 0 0-1.739.87.87 0 0 0 0 1.74"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'Grenada';
/**
* Flags by `Deji.Zeal`: Grenada
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const Grenada = Icon;