UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

27 lines (26 loc) 1.53 kB
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="M0 20c0 2.447.44 4.79 1.244 6.957L20 28.696l18.756-1.74A20 20 0 0 0 40 20c0-2.413-.427-4.726-1.21-6.867L20 11.304 1.21 13.133A20 20 0 0 0 0 20"/> <Path fill="#D80027" d="M20 40c8.6 0 15.93-5.428 18.756-13.044H1.244C4.07 34.573 11.401 40 20 40"/> <Path fill="#6DA544" d="M20 0C11.4 0 4.07 5.428 1.244 13.044h37.512C35.93 5.428 28.6 0 20 0"/> <Path fill="#0052B4" d="M20 29.565A9.565 9.565 0 0 0 29.565 20a9.565 9.565 0 0 0-19.13 0A9.565 9.565 0 0 0 20 29.565"/> <Path fill="#FFDA44" d="m19.998 12.593 1.727 5.314h5.596l-4.53 3.285 1.741 5.33-4.534-3.3-4.527 3.293 1.733-5.323-4.525-3.285h5.592z"/> <Path fill="#FFDA44" d="m26.885 21.323-5.478-1.78 3.385-4.66-1.407-1.022L20 18.52l-3.386-4.66-1.407 1.022 3.386 4.66-5.478 1.78.538 1.654 5.477-1.78v5.76h1.74v-5.76l5.477 1.78z"/> </G> <Defs> <ClipPath id="a"> <Path fill="#fff" d="M0 0h40v40H0z"/> </ClipPath> </Defs> </Svg>); }); Icon.displayName = 'Ethiopia'; /** * Flags by `Deji.Zeal`: Ethiopia * @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags} */ export const Ethiopia = Icon;