@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
25 lines (24 loc) • 1.24 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, Circle, Path } from 'react-native-svg';
import { genFillIcon } from "./gen";
var SuccessFill = genFillIcon(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, {
fill: color,
cy: "12",
cx: "12",
r: "10"
}), /*#__PURE__*/React.createElement(Path, {
fill: "#FFF",
d: "M15.293 9.293a1 1 0 0 1 1.415 1.414l-1.415-1.414Zm-4.758 6.172.707.707a1 1 0 0 1-1.414 0l.707-.707Zm-4.242-2.828a1 1 0 0 1 1.414-1.415l-1.414 1.415Zm10.415-1.93-5.466 5.465-1.414-1.414 5.465-5.465 1.415 1.414Zm-6.88 5.465-3.535-3.535 1.414-1.415 3.535 3.536-1.414 1.414Z"
}));
});
export default SuccessFill;