@ant-design/web3-icons
Version:
A collection of Web3 icons.
49 lines (48 loc) • 4.46 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CrptColorful = void 0;
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) {
return /*#__PURE__*/(0, _jsxRuntime.jsxs)("svg", {
...props,
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M0 0h64v64H0V0z",
fill: "#2992fb",
fillRule: "evenodd"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m44.28 18.57-1.15 1.15A15.75 15.75 0 0 0 33 16.1a15.94 15.94 0 0 0-15.9 14.83h-1.65A17.53 17.53 0 0 1 33 14.45a17.78 17.78 0 0 1 11.29 4.12ZM33 20.3a11.83 11.83 0 0 1 9.56 4.86L43.71 24a13.39 13.39 0 1 0 0 16.07l-1.15-1.15A11.77 11.77 0 1 1 33 20.3Zm12.61-.49L44.45 21a14.35 14.35 0 0 1 1.07 1.24L46.67 21a14.27 14.27 0 0 0-1.07-1.24ZM15.36 33.15A17.57 17.57 0 0 0 44.2 45.51L43 44.36A15.75 15.75 0 0 1 32.91 48 15.94 15.94 0 0 1 17 33.15h-1.64Zm29.08 10 1.15 1.15a14.33 14.33 0 0 0 1.08-1.3l-1.15-1.15a14.32 14.32 0 0 1-1.07 1.24ZM33 51.94a19.94 19.94 0 0 1 0-39.88 19.79 19.79 0 0 1 15.32 7.25l1.15-1.15A21.56 21.56 0 1 0 33 53.59a21.27 21.27 0 0 0 16.48-7.75l-1.15-1.15A19.53 19.53 0 0 1 33 51.94Z",
fill: "#fff",
fillRule: "evenodd"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 64 64"
};
/** */
const CrptColorful = exports.CrptColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-crpt-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
CrptColorful.displayName = 'CrptColorful';