@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
14 lines (13 loc) • 636 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const PlantFill = /* @__PURE__ */ memo(function PlantFill(_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 3v2a7 7 0 0 1-7 7h-1v1h5v7a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-7h5v-3a7 7 0 0 1 7-7zm-15.5-1a7.49 7.49 0 0 1 6.124 3.169A7.96 7.96 0 0 0 9.998 10v1h-.5a7.5 7.5 0 0 1-7.5-7.5V2z"/>
</Svg>);
});
/**
* Remix Icon: Plant Fill
* @see {@link https://remixicon.com/icon/plant-fill Remix Icon Docs}
*/
export { PlantFill };