@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 692 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M20.998 3v2c0 9.627-5.373 14-12 14H7.096c.212-3.012 1.15-4.835 3.598-7.001 1.204-1.065 1.102-1.68.509-1.327C7.119 13.102 5.09 16.386 5 21.63l-.003.37h-2c0-1.363.116-2.6.346-3.732Q2.999 16.327 2.998 13c0-5.523 4.477-10 10-10 2 0 4 1 8 0"/>
</Svg>);
});
Icon.displayName = 'LeafFill';
/**
* Remix Icon: Leaf Fill
* @see {@link https://remixicon.com/icon/leaf-fill Remix Icon Docs}
*/
export const LeafFill = Icon;