UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

25 lines (24 loc) 1.84 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="M1.985 11.304A19.9 19.9 0 0 0 0 20c0 3.116.713 6.066 1.985 8.696L20 30.435l18.016-1.74A19.9 19.9 0 0 0 40 20c0-3.116-.713-6.066-1.984-8.696L20 9.565z"/> <Path fill="#6DA544" d="M1.984 28.696C5.22 35.386 12.07 40 20 40s14.78-4.615 18.015-11.304z"/> <Path fill="#D80027" d="M1.984 11.304h36.03C34.779 4.614 27.928 0 19.999 0S5.22 4.615 1.984 11.304"/> <Path fill="#FFDA44" d="M16.522 25.217h6.956v-2.956l-1.391.695L20 20.87l-2.087 2.087-1.392-.695zM12.541 21.739l.324.996h1.048l-.848.616.324.997-.848-.616-.847.616.324-.997-.848-.616h1.048zM13.545 18.26l.324.997h1.048l-.848.616.324.996-.848-.615-.847.615.323-.996-.847-.616h1.048zM16.415 15.652l.323.996h1.048l-.848.616.324.997-.848-.616-.847.616.324-.997-.848-.616h1.048zM27.457 21.739l-.323.996h-1.048l.848.616-.324.997.847-.616.848.616-.324-.997.848-.616H27.78zM26.456 18.26l-.324.997h-1.048l.848.616-.324.996.848-.615.847.615-.324-.996.848-.616h-1.048zM23.584 15.652l-.323.996h-1.048l.847.616-.323.997.847-.616.848.616-.324-.997.848-.616h-1.048zM20 14.348l.324.996h1.048l-.848.616.324.996L20 16.34l-.847.616.324-.996-.848-.616h1.048z"/> </G> <Defs> <ClipPath id="a"> <Path fill="#fff" d="M0 0h40v40H0z"/> </ClipPath> </Defs> </Svg>); }); Icon.displayName = 'Tajikistan'; /** * Flags by `Deji.Zeal`: Tajikistan * @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags} */ export const Tajikistan = Icon;