UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

14 lines (13 loc) 625 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const CactusFill = /* @__PURE__ */ memo(function CactusFill(_props) { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...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>); }); /** * Remix Icon: Cactus Fill * @see {@link https://remixicon.com/icon/cactus-fill Remix Icon Docs} */ export { CactusFill };