@ant-design/web3-icons
Version:
A collection of Web3 icons.
82 lines (81 loc) • 6.73 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.KmdCircleColorful = void 0;
var _react = require("@inline-svg-unique-id/react");
var React = _interopRequireWildcard(require("react"));
var _icons = _interopRequireDefault(require("@ant-design/icons"));
var _antd = require("antd");
var _classnames = _interopRequireDefault(require("classnames"));
var _utils = require("../utils");
var _jsxRuntime = require("react/jsx-runtime");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
var SVGComponent = function SVGComponent(props) {
const _id2 = (0, _react.useUniqueInlineId)();
const _id = (0, _react.useUniqueInlineId)();
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", {
...props,
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("defs", {
children: [/*#__PURE__*/(0, _jsxRuntime.jsxs)("linearGradient", {
id: _id,
x1: "129.11",
y1: "130.39",
x2: "19.11",
y2: "21.89",
gradientTransform: "matrix(1 0 0 -1 0 150)",
gradientUnits: "userSpaceOnUse",
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("stop", {
offset: ".09",
stopColor: "#00edd3"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("stop", {
offset: ".41",
stopColor: "#1b456e"
})]
}), /*#__PURE__*/(0, _jsxRuntime.jsxs)("linearGradient", {
id: _id2,
x1: "129.14",
y1: "131.85",
x2: "52.14",
y2: "53.85",
gradientTransform: "matrix(1 0 0 -1 0 150)",
gradientUnits: "userSpaceOnUse",
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("stop", {
offset: ".4",
stopColor: "#00edd3"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("stop", {
offset: ".89",
stopColor: "#1b456e"
})]
})]
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M0 73.93a74 74 0 0 0 148 .25v-.56a72.67 72.67 0 0 0-2-16.9 7.95 7.95 0 0 0-15.47 3.63 58.22 58.22 0 1 1-43.06-42.9 7.94 7.94 0 0 0 9.53-5.9 7.83 7.83 0 0 0-5.85-9.49A73.91 73.91 0 0 0 2 56.72a75.71 75.71 0 0 0-2 17.21Z",
fill: `url(#${_id})`
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M111.58 19.47c-.13.13-.19.26-.26.32a11.86 11.86 0 0 0-3.18 7.07v1.27c0 .32-.06.57-.06.89A21.33 21.33 0 0 1 84.7 48.18a20.63 20.63 0 0 1-2.8-.44 12 12 0 0 1-1.6-.45 25.36 25.36 0 0 0-6.94-.76A27.89 27.89 0 0 0 55 53.91c-.25.25-.57.45-.83.76a27.74 27.74 0 1 0 39.19 39.21 28.21 28.21 0 0 0 3.12-3.75 27.8 27.8 0 0 0 4.21-22.34 14.3 14.3 0 0 1-.39-1.53c0-.07-.06-.13-.06-.26a21.35 21.35 0 0 1 16.05-25.65 16 16 0 0 1 3-.44l.44-.07a10 10 0 0 1 1.34-.06h.13a12 12 0 0 0 7.32-3.44c.45-.51.9-1 1.28-1.53a11.85 11.85 0 0 0-2.87-16.61 12 12 0 0 0-15.35 1.27Z",
fill: `url(#${_id2})`
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 148 148"
};
/** */
const KmdCircleColorful = exports.KmdCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-kmd-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
KmdCircleColorful.displayName = 'KmdCircleColorful';