@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
25 lines (24 loc) • 2.05 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="#000" d="M34.142 34.142c-7.81 7.81-20.473 7.81-28.284 0-7.81-7.81-7.81-20.474 0-28.284s19.244-6.581 27.054 1.23c7.81 7.81 9.04 19.244 1.23 27.054"/>
<Path fill="#A2001D" d="M5.858 5.858c7.81-7.81 20.474-7.81 28.285 0 7.81 7.81 7.81 20.474 0 28.284"/>
<Path fill="#F0F0F0" d="m15.285 26.957.323.996h1.048l-.848.616.324.996-.847-.616-.848.616.324-.996-.848-.616h1.048zM12.609 17.391l.54 1.661h1.746l-1.413 1.026.54 1.661-1.413-1.026-1.413 1.026.54-1.66-1.413-1.027h1.746zM12.609 29.565l.54 1.661h1.746l-1.413 1.026.54 1.661-1.413-1.026-1.413 1.026.54-1.66-1.413-1.027h1.746zM17.714 21.74l.54 1.66H20l-1.413 1.026.54 1.661-1.413-1.026-1.412 1.026.54-1.66-1.413-1.027h1.746zM7.504 21.74l.54 1.66h1.745l-1.412 1.026.54 1.661-1.413-1.026-1.413 1.026.54-1.66L5.218 23.4h1.746z"/>
<Path fill="#FFDA44" d="M33.48 14.81a5.18 5.18 0 0 0-3.302-1.513l3.735-2.906a6.94 6.94 0 0 0-5.428-2.018 5.2 5.2 0 0 0-1.335-2.286L25.674 9.04a2.174 2.174 0 1 0-2.951 2.951l-2.951 1.476a5.2 5.2 0 0 0 2.287 1.336 6.94 6.94 0 0 0 2.017 5.427l3.264-4.196c.245-.242.57-.376.915-.376.348 0 .675.136.922.382.246.247.382.574.382.923 0 .348-.136.676-.382.922l1.23 1.23c.574-.575.891-1.34.891-2.152a3.02 3.02 0 0 0-.604-1.82c.57.152 1.11.45 1.557.897a3.48 3.48 0 0 1 0 4.92l1.23 1.23a5.18 5.18 0 0 0 1.528-3.69 5.19 5.19 0 0 0-1.528-3.69"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'PapuaNewGuinea';
/**
* Flags by `Deji.Zeal`: Papua New Guinea
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const PapuaNewGuinea = Icon;