@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
23 lines (22 loc) • 1.18 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, Path } from 'react-native-svg';
import { genFillIcon } from "./gen";
var LocationFill = 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(Path, {
fill: color,
d: "M12 21s8-6.514 8-11.005A7.997 7.997 0 0 0 12 2C7.582 2 4 5.58 4 9.995 4 14.485 12 21 12 21Z"
}), /*#__PURE__*/React.createElement(Path, {
fill: "#FFF",
d: "M12 14a4 4 0 0 0 4-4h-2a2 2 0 0 1-2 2v2Zm4-4a4 4 0 0 0-4-4v2a2 2 0 0 1 2 2h2Zm-4-4a4 4 0 0 0-4 4h2a2 2 0 0 1 2-2V6Zm-4 4a4 4 0 0 0 4 4v-2a2 2 0 0 1-2-2H8Z"
}));
});
export default LocationFill;