@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
26 lines (25 loc) • 1.41 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="#F0F0F0" 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="#0052B4" d="M20 0C13.938 0 8.507 2.697 4.839 6.956H35.16C31.493 2.697 26.06 0 20 0M35.16 33.044H4.84C8.507 37.303 13.939 40 19.999 40c6.063 0 11.494-2.697 15.162-6.956"/>
<Path fill="#D80027" d="M37.065 9.565H2.935A19.9 19.9 0 0 0 0 20c0 3.824 1.074 7.397 2.935 10.435h34.13A19.9 19.9 0 0 0 40 20c0-3.824-1.074-7.397-2.935-10.435"/>
<Path fill="#F0F0F0" d="M12.304 27.696a7.696 7.696 0 1 0 0-15.392 7.696 7.696 0 0 0 0 15.392"/>
<Path fill="#D80027" d="m12.305 12.304 1.726 5.315h5.597l-4.53 3.284 1.74 5.33-4.533-3.3-4.528 3.294 1.734-5.324-4.526-3.284h5.593z"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'NorthKorea';
/**
* Flags by `Deji.Zeal`: North Korea
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const NorthKorea = Icon;