UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

27 lines (26 loc) 1.43 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="#F0F0F0" d="M20 40c11.046 0 20-8.954 20-20S31.046 0 20 0 0 8.955 0 20s8.954 20 20 20"/> <Path fill="#000" d="M5.858 34.142c-7.81-7.81-7.81-20.473 0-28.284L17.39 20z"/> <Path fill="#FFDA44" d="M17.392 20 2.653 10.04q-.686 1.194-1.206 2.482L8.91 20l-7.462 7.48q.52 1.287 1.206 2.479z"/> <Path fill="#6DA544" d="M39.831 17.391h-22.44L5.858 5.858a20 20 0 0 0-3.205 4.182l9.94 9.96-9.94 9.959a20 20 0 0 0 3.205 4.183l11.533-11.533h22.44a20.2 20.2 0 0 0 0-5.218"/> <Path fill="#0052B4" d="M7.822 35.866A19.9 19.9 0 0 0 20 40c9.24 0 17.016-6.267 19.311-14.782H18.47z"/> <Path fill="#D80027" d="M39.31 14.783C37.015 6.267 29.24 0 19.999 0A19.9 19.9 0 0 0 7.822 4.135L18.47 14.783z"/> </G> <Defs> <ClipPath id="a"> <Path fill="#fff" d="M0 0h40v40H0z"/> </ClipPath> </Defs> </Svg>); }); Icon.displayName = 'SouthAfrica'; /** * Flags by `Deji.Zeal`: South Africa * @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags} */ export const SouthAfrica = Icon;