@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 431 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgPlantFill = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...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-7h3Zm-15.5-1a7.49 7.49 0 0 1 6.124 3.169A7.962 7.962 0 0 0 9.998 10v1h-.5a7.5 7.5 0 0 1-7.5-7.5V2h3.5Z" />
</Svg>
);
export default SvgPlantFill;