@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
24 lines (23 loc) • 1.13 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="M1.985 11.304A19.9 19.9 0 0 0 0 20c0 3.116.713 6.066 1.985 8.696L20 30.435l18.016-1.74A19.9 19.9 0 0 0 40 20c0-3.116-.713-6.066-1.984-8.696L20 9.565z"/>
<Path fill="#6DA544" d="M1.985 28.696C5.22 35.386 12.071 40 20 40s14.78-4.614 18.015-11.304z"/>
<Path fill="#FF9811" d="M1.985 11.304h36.03C34.78 4.614 27.929 0 20 0S5.22 4.614 1.985 11.304M20 26.957a6.956 6.956 0 1 0 0-13.913 6.956 6.956 0 0 0 0 13.912"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'Niger';
/**
* Flags by `Deji.Zeal`: Niger
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const Niger = Icon;