UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

25 lines (24 loc) 1.69 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="M34.142 34.142c-7.81 7.81-20.474 7.81-28.284 0s-7.81-20.474 0-28.284c.003 0 17.973-5.31 25.784 2.5 7.81 7.81 2.506 25.779 2.5 25.784"/> <Path fill="#D80027" d="M34.142 34.142c7.81-7.81 7.81-20.474 0-28.284s-20.474-7.81-28.285 0z"/> <Path fill="#FF9811" d="M25.228 25.23a3.04 3.04 0 0 1-2.604-.177 3.047 3.047 0 0 1-1.165-4.143l-.249-.14a5.66 5.66 0 0 0 4.327-5.562 5.64 5.64 0 0 0-1.932-4.183l-1.826 1.87a3.04 3.04 0 0 1 1.15 2.344 3.047 3.047 0 0 1-3.007 3.08l.004.286a5.66 5.66 0 0 0-6.98-.966 5.64 5.64 0 0 0-2.657 3.765l2.533.646a3.04 3.04 0 0 1 1.455-2.167 3.047 3.047 0 0 1 4.17 1.063l.247-.146a5.66 5.66 0 0 0 2.653 6.528 5.64 5.64 0 0 0 4.588.419zm-5.285-5.172"/> <Path fill="#FFEACF" d="M27.405 13.545 25.99 18.59l-4.241-.783-2.73-5.628-7.376 2.617-.582-1.639-1.93-.238 1.455 4.098 5.076-1.298 1.442 4.065-3.509 5.178 5.955 5.078-1.129 1.324.759 1.79 2.822-3.308-3.662-3.747 2.799-3.281 6.238.45L28.8 15.57l1.71.316 1.172-1.552zm-7.407 6.591"/> </G> <Defs> <ClipPath id="a"> <Path fill="#fff" d="M0 0h40v40H0z"/> </ClipPath> </Defs> </Svg>); }); Icon.displayName = 'Bhutan'; /** * Flags by `Deji.Zeal`: Bhutan * @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags} */ export const Bhutan = Icon;