@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
32 lines • 1.55 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, Circle, Rect, Path } from 'react-native-svg';
import { genColoursIcon } from "./gen";
var TransferCircleColours = 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(G, null, /*#__PURE__*/React.createElement(Circle, {
fill: "#0065FE",
cy: "12",
cx: "12",
r: "12"
}), /*#__PURE__*/React.createElement(Rect, {
fill: "#FFF",
rx: "1",
height: "12",
width: "16",
y: "6",
x: "4"
}), /*#__PURE__*/React.createElement(Path, {
fill: "#0065FE",
fillRule: "evenodd",
d: "m15.858 10.618-.65-2.326A.4.4 0 0 0 14.822 8h-.624a.4.4 0 0 0-.385.508l.29 1.037a.1.1 0 0 1-.096.127H8.4a.4.4 0 0 0-.4.4v.654c0 .221.18.4.4.4h7.073a.4.4 0 0 0 .385-.508m-7.716 2.738.65 2.326a.4.4 0 0 0 .386.293h.624a.4.4 0 0 0 .385-.508l-.29-1.037a.1.1 0 0 1 .096-.127H15.6a.4.4 0 0 0 .4-.4v-.655a.4.4 0 0 0-.4-.4H8.527a.4.4 0 0 0-.385.508"
})));
});
export default TransferCircleColours;