@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
23 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, G, Path } from 'react-native-svg';
import { genOutlineIcon } from "./gen";
var WarningTriangleOutline = 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(G, {
fill: color,
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement(Path, {
d: "M22.854 21.502q.292-.498.012-1.002L12.883 2.53q-.289-.52-.883-.52-.594 0-.883.52L1.134 20.5q-.28.504.013 1.002.292.498.87.498h19.966q.578 0 .87-.498zM20.3 20 12 5.06 3.7 20z"
}), /*#__PURE__*/React.createElement(Path, {
d: "M11 15v-5h2v5zm0 3v-2h2v2z"
})));
});
export default WarningTriangleOutline;