UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

24 lines (23 loc) 1.13 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="#D80027" d="M38.015 11.304C34.78 4.614 27.93 0 20 0S5.22 4.614 1.984 11.304L20 13.044zM1.984 28.695C5.22 35.385 12.071 40 20 40c7.93 0 14.78-4.615 18.015-11.305L20 26.956z"/> <Path fill="#0052B4" d="M38.016 11.304H1.985A19.9 19.9 0 0 0 0 20c0 3.116.713 6.066 1.985 8.696h36.03A19.9 19.9 0 0 0 40 20a19.9 19.9 0 0 0-1.984-8.696"/> <Path fill="#F0F0F0" d="M20 26.956a6.956 6.956 0 1 0 0-13.912 6.956 6.956 0 0 0 0 13.912"/> </G> <Defs> <ClipPath id="a"> <Path fill="#fff" d="M0 0h40v40H0z"/> </ClipPath> </Defs> </Svg>); }); Icon.displayName = 'Laos'; /** * Flags by `Deji.Zeal`: Laos * @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags} */ export const Laos = Icon;