@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
30 lines (29 loc) • 1.3 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 InfoCircleOutline = 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, {
strokeWidth: strokeWidth || 2,
stroke: color,
d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z"
}), /*#__PURE__*/React.createElement(Path, {
fill: color,
d: "M12 5.5A1.25 1.25 0 1 1 12 8a1.25 1.25 0 0 1 0-2.5Zm.25 11.5v-7h-1"
}), /*#__PURE__*/React.createElement(Path, {
strokeLinejoin: "round",
strokeLinecap: "round",
strokeWidth: strokeWidth || 2,
stroke: color,
d: "M12.25 17v-7h-1"
}));
});
export default InfoCircleOutline;