@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
31 lines (30 loc) • 1.52 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 YuanCircleFill = 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, {
r: "10",
cx: "12",
cy: "12",
fill: color
}), /*#__PURE__*/React.createElement(Path, {
d: "M10.268 7.36a1 1 0 1 0-1.536 1.28l1.536-1.28ZM12 11l-.768.64a1 1 0 0 0 1.536 0L12 11Zm3.268-2.36a1 1 0 1 0-1.536-1.28l1.536 1.28Zm-6.536 0 2.5 3 1.536-1.28-2.5-3-1.536 1.28Zm4.036 3 2.5-3-1.536-1.28-2.5 3 1.536 1.28ZM9 13a1 1 0 1 0 0 2v-2Zm6 2a1 1 0 0 0 0-2v2Zm-6 0h6v-2H9v2Z",
fill: "#FFF"
}), /*#__PURE__*/React.createElement(Path, {
d: "M9 10a1 1 0 1 0 0 2v-2Zm6 2a1 1 0 0 0 0-2v2Zm-6 0h6v-2H9v2Z",
fill: "#FFF"
}), /*#__PURE__*/React.createElement(Path, {
d: "M13 11a1 1 0 0 0-2 0h2Zm-2 6a1 1 0 0 0 2 0h-2Zm0-6v6h2v-6h-2Z",
fill: "#FFF"
}));
});
export default YuanCircleFill;