@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
27 lines (26 loc) • 1.45 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="#FCFCFC" d="M20 40c11.046 0 20-8.954 20-20S31.046 0 20 0 0 8.954 0 20s8.954 20 20 20"/>
<Path fill="#A2001D" d="m8.26 18.55-2.173-3.943 2.174-3.882 2.174 3.882z"/>
<Path fill="#A2001D" d="M3.913 18.55 1.74 14.608l2.174-3.882 2.174 3.882zM8.26 29.275l-2.173-3.944L8.26 21.45l2.174 3.882z"/>
<Path fill="#A2001D" d="M3.913 29.275 1.74 25.331l2.174-3.882 2.174 3.882zM10.435 3.882 9.82 2.783a20 20 0 0 0-3.093 2.259L8.26 7.826zM8.261 32.174l-1.551 2.77a20 20 0 0 0 3.091 2.262l.634-1.15z"/>
<Path fill="#6DA544" d="M12.174 25.217V38.41A19.9 19.9 0 0 0 20 40c8.6 0 15.93-5.428 18.756-13.044z"/>
<Path fill="#A2001D" d="M38.756 26.957A20 20 0 0 0 40 20C40 8.954 31.046 0 20 0c-2.777 0-5.422.567-7.826 1.59v25.367z"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
Icon.displayName = 'Belarus';
/**
* Flags by `Deji.Zeal`: Belarus
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export const Belarus = Icon;