@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
26 lines • 1.2 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 { genOutlineIcon } from "./gen";
var LocationOutline = genOutlineIcon(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, {
strokeLinejoin: "round",
strokeWidth: strokeWidth || 2.354,
stroke: color,
d: "M12 22s8.5-5.481 8.5-11.818C20.5 5.663 16.694 2 12 2s-8.5 3.663-8.5 8.182C3.5 16.519 12 22 12 22Z"
}), /*#__PURE__*/React.createElement(Path, {
strokeLinejoin: "round",
strokeWidth: strokeWidth || 2,
stroke: color,
d: "M12 13a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"
}));
});
export default LocationOutline;