@fruits-chain/icons-react-native
Version:
🎨 React Native Icon
25 lines • 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, Circle, Path } from 'react-native-svg';
import { genColoursIcon } from "./gen";
var BankCardCircleColours = 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: "#0E9EFF",
cy: "12",
cx: "12",
r: "12"
}), /*#__PURE__*/React.createElement(Path, {
fill: "#FFF",
fillRule: "evenodd",
d: "M20 9H4V7q0-.098.02-.195.018-.097.056-.188.038-.09.093-.173.054-.081.124-.151.07-.07.151-.124.082-.055.173-.093.091-.038.188-.057Q4.902 6 5 6h14q.099 0 .195.02.097.018.188.056.09.038.173.093.081.054.151.124.07.07.124.151.055.082.093.173.038.091.057.188Q20 6.902 20 7v2ZM4 17v-6.5h16V17q0 .099-.02.195-.018.097-.056.188-.038.09-.093.173-.054.081-.124.151-.07.07-.151.124-.082.055-.173.093-.091.038-.188.057Q19.1 18 19 18H5q-.098 0-.195-.02-.097-.018-.188-.056-.09-.038-.173-.093-.081-.054-.151-.124-.07-.07-.124-.151-.055-.082-.093-.173-.038-.091-.057-.188Q4 17.1 4 17Zm8.684-1.982h-.898a.4.4 0 0 0-.383.283l-.287.94a.2.2 0 0 0 .191.26h.898a.4.4 0 0 0 .383-.284l.287-.941a.2.2 0 0 0-.191-.258Zm1.6 0h.899a.2.2 0 0 1 .191.258l-.288.941a.4.4 0 0 1-.382.283h-.898a.2.2 0 0 1-.191-.258l.287-.941a.4.4 0 0 1 .383-.283Zm3.899 0h-1.434a.4.4 0 0 0-.382.283l-.288.94a.2.2 0 0 0 .191.26h1.434a.4.4 0 0 0 .383-.284l.287-.941a.2.2 0 0 0-.191-.258Z"
})));
});
export default BankCardCircleColours;