react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 493 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"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={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-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>
);
export default SvgPlantFill;