@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
67 lines (66 loc) • 2.1 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, G, Ellipse, Path } from 'react-native-svg';
import { genColoursIcon } from "./gen";
var WeChatColours = genColoursIcon(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: "12",
cx: "12",
cy: "12",
fill: "#07C160"
}), /*#__PURE__*/React.createElement(G, null, /*#__PURE__*/React.createElement(Ellipse, {
cx: "10.5",
cy: "10.25",
rx: "5",
ry: "4.25",
fill: "#FFF"
}), /*#__PURE__*/React.createElement(Ellipse, {
cx: "14.25",
cy: "14",
rx: "4.25",
ry: "3.5",
fill: "#FFF"
}), /*#__PURE__*/React.createElement(Ellipse, {
cx: "14.25",
cy: "14",
rx: "4.25",
ry: "3.5",
stroke: "#07C160",
strokeWidth: ".5"
})), /*#__PURE__*/React.createElement(G, null, /*#__PURE__*/React.createElement(Circle, {
r: ".625",
cx: "8.875",
cy: "9.125",
fill: "#07C160"
}), /*#__PURE__*/React.createElement(Circle, {
r: ".625",
cx: "12.125",
cy: "9.125",
fill: "#07C160"
}), /*#__PURE__*/React.createElement(Circle, {
r: ".5",
cx: "12.75",
cy: "13.25",
fill: "#07C160"
}), /*#__PURE__*/React.createElement(Circle, {
r: ".5",
cx: "15.75",
cy: "13.25",
fill: "#07C160"
}), /*#__PURE__*/React.createElement(Path, {
d: "m6.75 15 2-1-1.5-.75-.5 1.75z",
fill: "#FFF"
})), /*#__PURE__*/React.createElement(Path, {
d: "m17.5 17.75-2-1L17 16l.5 1.75z",
fill: "#FFF"
}));
});
export default WeChatColours;