@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
28 lines (27 loc) • 1.76 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="M34.906 33.333A19.92 19.92 0 0 0 40 20c0-5.123-1.927-9.795-5.094-13.333L20 5.217 5.094 6.667A19.92 19.92 0 0 0 0 20c0 5.123 1.927 9.795 5.094 13.333L20 34.783z"/>
<Path fill="#000" d="M5.094 6.667h29.811A19.95 19.95 0 0 0 20 0 19.95 19.95 0 0 0 5.094 6.667"/>
<Path fill="#D80027" d="m0 20 20 1.74L40 20a20 20 0 0 0-1.14-6.667H1.14A20 20 0 0 0 0 20"/>
<Path fill="#000" d="M1.14 26.667h37.72A20 20 0 0 0 40 20H0c0 2.338.402 4.581 1.14 6.667"/>
<Path fill="#D80027" d="M34.905 33.333H5.094A19.95 19.95 0 0 0 20 40a19.95 19.95 0 0 0 14.905-6.667"/>
<Path fill="#F0F0F0" d="M26.674 20a6.674 6.674 0 1 1-13.347 0 6.674 6.674 0 0 1 13.347 0"/>
<Path fill="#000" d="M22.445 20.34 20 19.28s.572-1.898.602-2.028q.035-.143.035-.295a1.3 1.3 0 0 0-.383-.923l.615-.614a2.17 2.17 0 0 0-1.537-.637c-.6 0-1.144.243-1.537.637l.615.614a1.3 1.3 0 0 0-.326 1.301l-.926.926h1.683s-.696 1.045-1.076 1.903.005 1.905.883 2.295l.508.226.844.793v.87l-.87.87h1.74v-1.74l.793-.793h1.641l.024-.05a1.74 1.74 0 0 0-.883-2.295"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'Uganda';
/**
* Flags by `Deji.Zeal`: Uganda
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const Uganda = Icon;