@nomercyicons/react
Version:
40 lines • 2.01 kB
JavaScript
const React = require("react");
function BankinColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 36 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
id: "a",
x1: "70.843%",
x2: "25.131%",
y1: "90.338%",
y2: "5.615%"
}, /*#__PURE__*/React.createElement("stop", {
offset: "0%",
stopColor: "#8D77FF"
}), /*#__PURE__*/React.createElement("stop", {
offset: "50.24%",
stopColor: "#3BB2FF"
}), /*#__PURE__*/React.createElement("stop", {
offset: "100%",
stopColor: "#2CCDFF"
}))), /*#__PURE__*/React.createElement("path", {
fill: "url(#a)",
fillRule: "evenodd",
d: "M641.972 693.69c.15-2.575-.345-4.137-.523-4.828-1.508-4.852-5.44-7.46-5.44-7.46s4.213-2.92 4.625-9.499c.41-6.579-6.813-11.903-15.825-11.903-11.103 0-17.808 4.727-18.49 5.102-.126.069-.367.212-.31.417l1.76 5.63c.1.38.125.682.593.47 0 0 4.377-1.797 5.344-1.797 0 0-5.04 35.274-4.917 35.274-.122 1.048 0 1.343 1.389 1.758.553.165 25.298 5.646 30.85-8.912.012.08.809-1.94.944-4.252zm-18.29-25.326a.245.245 0 01.181-.204 9.052 9.052 0 01.646-.126c1.145-.178 2.362-.186 3.51.092.834.202 4.48 1.069 3.316 5.773-1.164 4.705-7.083 4.849-7.967 4.8a35.996 35.996 0 01-.78-.053l-.061-.005a.245.245 0 01-.222-.277l1.376-10zm9.62 25.38c-1.552 7.097-11.014 6.303-12.258 6.234a51.334 51.334 0 01-1.097-.074l-.085-.007a.344.344 0 01-.312-.39l1.934-14.056a.345.345 0 01.256-.286 12.19 12.19 0 01.909-.177c1.61-.252 3.32-.262 4.932.128 1.173.285 7.272 1.533 5.72 8.629z",
transform: "translate(-606 -660)"
}));
}
const ForwardRef = React.forwardRef(BankinColorIcon);
module.exports = ForwardRef;