@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
24 lines (23 loc) • 1 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path, Defs, ClipPath } from 'react-native-svg';
const SaintLucia = /* @__PURE__ */ memo(function SaintLucia(_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="#338AF3" 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="#F3F3F3" d="M12.61 26.956h14.782l-7.391-17.39z"/>
<Path fill="#333" d="M15.178 25.217 20 14.247l4.823 10.97z"/>
<Path fill="#FFDA44" d="M12.61 26.957h14.782L20.001 20z"/>
</G>
<Defs>
<ClipPath id="a">
<Path fill="#fff" d="M0 0h40v40H0z"/>
</ClipPath>
</Defs>
</Svg>);
});
/**
* Flags by `Deji.Zeal`: Saint Lucia
* @see {@link https://www.figma.com/community/file/1088904439772569873/alphabetical-country-flags Alphabetical Country Flags}
*/
export { SaintLucia };