@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
33 lines • 2.02 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { Svg, G, Path } from 'react-native-svg';
import { genFillIcon } from "./gen";
var GrassFill = genFillIcon(function (_ref, props) {
var size = _ref.size,
color = _ref.color,
strokeWidth = _ref.strokeWidth;
return /*#__PURE__*/React.createElement(Svg, _extends({}, props, {
viewBox: "0 0 24 24",
fill: "none",
width: size,
height: size
}), /*#__PURE__*/React.createElement(G, {
fill: color
}, /*#__PURE__*/React.createElement(Path, {
d: "M11 20H9a6 6 0 0 1-6-6v-1h2a6 6 0 0 1 6 6z"
}), /*#__PURE__*/React.createElement(Path, {
d: "M12 19v2H9q-2.9 0-4.95-2.05Q2 16.9 2 14v-2h3q2.9 0 4.95 2.05Q12 16.1 12 19zm-2 0H9q-2.071 0-3.536-1.464Q4 16.07 4 14h1q2.071 0 3.536 1.464Q10 16.93 10 19z",
fillRule: "evenodd"
}), /*#__PURE__*/React.createElement(Path, {
d: "m12.274 12.692-1.078-.623A6 6 0 0 1 9 3.873L9.504 3l1.078.623a6 6 0 0 1 2.196 8.196z"
}), /*#__PURE__*/React.createElement(Path, {
d: "m13.644 12.319-1.004 1.739-1.944-1.123q-2.51-1.45-3.261-4.25-.75-2.801.699-5.312l1.004-1.739 1.944 1.123q2.511 1.45 3.262 4.25.75 2.8-.7 5.312zm-1.736-.994-.212-.122q-1.793-1.036-2.33-3.036-.536-2 .5-3.794l.004-.007.212.123q1.794 1.035 2.33 3.036.536 2-.5 3.794z",
fillRule: "evenodd"
}), /*#__PURE__*/React.createElement(Path, {
d: "M14 20h2a6 6 0 0 0 6-6h-2a6 6 0 0 0-6 6z"
}), /*#__PURE__*/React.createElement(Path, {
d: "M15.05 15.05Q13 17.1 13 20v1h3q2.9 0 4.95-2.05Q23 16.9 23 14v-1h-3q-2.9 0-4.95 2.05zm.042 3.95H16q2.071 0 3.536-1.464 1.097-1.098 1.372-2.536H20q-2.071 0-3.536 1.464-1.097 1.098-1.372 2.536z",
fillRule: "evenodd"
})));
});
export default GrassFill;