react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 479 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgCactusFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M11.998 2a4 4 0 0 1 4 4v9h1c.55 0 1-.45 1-1V8a1 1 0 0 1 2 0v6a3 3 0 0 1-3 3h-1v3h2v2h-12v-2h2v-6h-1a3 3 0 0 1-3-3V9a1 1 0 1 1 2 0v2c0 .55.45 1 1 1h1V6a4 4 0 0 1 4-4" />
</Svg>
);
export default SvgCactusFill;