UNPKG

@fruits-chain/icons-react-native

Version:

🎨 React Native Icon

33 lines (32 loc) • 1.48 kB
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 PlaceOutline = 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", strokeLinecap: "round", strokeWidth: strokeWidth || 2, stroke: color, d: "M4.929 16.379C3.119 16.922 2 17.672 2 18.5c0 1.657 4.477 3 10 3s10-1.343 10-3c0-.828-1.12-1.578-2.929-2.121" }), /*#__PURE__*/React.createElement(Path, { strokeLinejoin: "round", strokeWidth: strokeWidth || 2, stroke: color, d: "M12 17.5s6.5-4.248 6.5-9.16C18.5 4.84 15.59 2 12 2S5.5 4.839 5.5 8.34c0 4.912 6.5 9.16 6.5 9.16Z" }), /*#__PURE__*/React.createElement(Path, { strokeLinejoin: "round", strokeWidth: strokeWidth || 2, stroke: color, d: "M12 11a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z" })); }); export default PlaceOutline;