UNPKG

@fruits-chain/icons-react-native

Version:
26 lines • 1.09 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, Circle, Path } from 'react-native-svg'; import { genOutlineIcon } from "./gen"; var ManOutline = 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(Circle, { r: "5.5", cx: "10.5", cy: "13.5", stroke: color, strokeWidth: strokeWidth || 2 }), /*#__PURE__*/React.createElement(Path, { d: "M18 7.414V10h2V4h-6v2h2.586l-3.293 3.293 1.414 1.414z", fill: color, fillRule: "evenodd" })); }); export default ManOutline;