UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

25 lines (24 loc) 2.31 kB
import { memo } from 'react'; import { Svg, G, Path, Rect, Defs, ClipPath } from 'react-native-svg'; const Icon = (props) => { const { color = 'black', size = 24, ...otherProps } = props; return (<Svg viewBox="0 0 40 40" fill="none" height={size} width={size} {...otherProps}> <G clipPath="url(#clip0_51_2034)"> <Path d="M34.1422 34.1421C26.3317 41.9526 13.6684 41.9526 5.85785 34.1421C-1.95262 26.3317 -1.95262 13.6683 5.85785 5.85775C5.86067 5.85775 23.8311 0.547832 31.6417 8.3583C39.4522 16.1688 34.1475 34.1367 34.1422 34.1421Z" fill="#FFDA44"/> <Path d="M34.1417 34.1421C41.9522 26.3317 41.9522 13.6683 34.1417 5.85776C26.3313 -1.95279 13.668 -1.95271 5.85742 5.85776L34.1417 34.1421Z" fill="#D80027"/> <Path d="M25.2281 25.2298C24.4065 25.5524 23.4519 25.5182 22.6237 25.0534C21.1604 24.2322 20.6381 22.3733 21.4595 20.9098L21.2102 20.7699C23.7157 20.1658 25.5694 17.8916 25.5369 15.2078C25.5167 13.5393 24.7712 12.0466 23.605 11.0251L21.779 12.8959C22.4693 13.4461 22.9169 14.29 22.9284 15.2394C22.9487 16.9176 21.6001 18.2994 19.922 18.3196L19.9256 18.6053C18.1495 16.7376 15.2533 16.2694 12.9454 17.6394C11.5105 18.4913 10.5907 19.8832 10.2891 21.4039L12.8222 22.05C12.9535 21.177 13.4605 20.3675 14.277 19.8827C15.72 19.0261 17.5909 19.5033 18.4476 20.9462L18.6935 20.8004C17.964 23.2721 19.0066 26.0145 21.3471 27.3283C22.8023 28.145 24.4676 28.2457 25.9354 27.7466L25.2281 25.2298ZM19.9431 20.0584L19.9429 20.0584L19.9431 20.0584Z" fill="#FF9811"/> <Path d="M27.4048 13.5453L25.9912 18.5899L21.7498 17.8067L19.0197 12.179L11.6441 14.7962L11.0625 13.1572L9.13281 12.9194L10.5868 17.017L15.6625 15.7189L17.1049 19.7836L13.5962 24.9618L19.5506 30.0404L18.422 31.3636L19.1809 33.1539L22.0027 29.8458L18.3406 26.0991L21.1396 22.8176L27.3785 23.2672L28.7995 15.5711L30.5098 15.8869L31.6808 14.3346L27.4048 13.5453ZM19.9982 20.136V20.1361V20.136Z" fill="#FFEACF"/> </G> <Defs> <ClipPath id="clip0_51_2034"> <Rect width="40" height="40" fill="white"/> </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 = memo(Icon);