UNPKG

@fruits-chain/icons-react-native

Version:
30 lines • 1.32 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 QuestionCircleOutline = 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, { d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2Z", stroke: color, strokeWidth: strokeWidth || 2, strokeLinejoin: "round" }), /*#__PURE__*/React.createElement(Path, { d: "M12 14.313v-2a3 3 0 1 0-3-3", stroke: color, strokeWidth: strokeWidth || 2, strokeLinecap: "round", strokeLinejoin: "round" }), /*#__PURE__*/React.createElement(Path, { d: "M12 18.813a1.25 1.25 0 1 0 0-2.5 1.25 1.25 0 0 0 0 2.5Z", fill: color })); }); export default QuestionCircleOutline;