@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
24 lines (23 loc) • 1.42 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="#0052B4" d="M20 40c2.446 0 4.79-.44 6.956-1.244L27.826 20l-.87-18.756A20 20 0 0 0 20 0c-2.447 0-4.79.44-6.957 1.244L12.173 20l.87 18.756A20 20 0 0 0 20 40"/>
<Path fill="#A2001D" d="M0 20c0 8.6 5.428 15.93 13.044 18.756V1.244C5.428 4.07 0 11.4 0 20M26.957 1.244v37.512C34.573 35.93 40.001 28.599 40.001 20S34.573 4.07 26.957 1.244"/>
<Path fill="#FFDA44" d="M9.565 20h1.74v6.956h-1.74zM2.608 20h1.74v6.956h-1.74zM6.956 24.348a1.74 1.74 0 1 0 0-3.478 1.74 1.74 0 0 0 0 3.478M6.956 17.391a.87.87 0 1 0 0-1.739.87.87 0 0 0 0 1.74M5.217 25.218h3.478v1.739H5.217zM5.217 18.261h3.478v1.74H5.217zM6.956 10.435l.616 1.895h1.993l-1.612 1.172.615 1.895-1.612-1.172-1.612 1.172.616-1.896-1.612-1.17H6.34z"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'Mongolia';
/**
* Flags by `Deji.Zeal`: Mongolia
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const Mongolia = Icon;