@ant-design/web3-icons
Version:
A collection of Web3 icons.
59 lines (58 loc) • 5.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UsdpColorful = 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", {
fill: "#0293d6",
d: "M85 309a127 127 0 0 0 88 43 80 80 0 0 0 53-24 922 922 0 0 1 87-66l17-7c7-3 19-10 30-23 12-16 14-33 14-39a110 110 0 0 0-18-53A332 332 0 0 1 85 309z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
fill: "#ebe638",
d: "M123 25a80 80 0 0 1 58-25 52 52 0 0 1 38 13 174 174 0 0 0 98 32c9 1 27 4 39 19 9 12 10 25 10 31a139 139 0 0 1-10 45L123 25z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
fill: "#bad147",
d: "M85 309c-9-1-21-4-35-10s-31-13-42-32c-7-12-8-24-8-32a138 138 0 0 1 15-61 282 282 0 0 0 19-73l5-20c3-10 5-20 12-30l11-12a95 95 0 0 1 61-14 312 312 0 0 0-38 284z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
fill: "#78b650",
d: "M123 25c-1 0 54 3 88 15l28 12c-11-1-81-4-134 49-67 68-45 161-44 166a102 102 0 0 1-22-69 240 240 0 0 1 84-173z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
fill: "#2f8260",
d: "M257 272a200 200 0 0 0-18-220 137 137 0 0 1 76 40c12 10 27 25 41 48a295 295 0 0 1-99 132z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
fill: "#085229",
d: "M289 96c-16-27-39-39-49-44-8-2-83-14-140 41-46 44-49 101-49 112a171 171 0 0 0 36 104 238 238 0 0 0 90 0c15-3 50-9 80-35 4-4 48-45 51-110 0-11 0-39-19-68zm-36 145a99 99 0 0 1-73 32c-6 0-46-1-74-34-4-5-24-29-23-65 2-48 40-76 48-82 7-5 24-16 49-17 6-1 27-2 48 10 46 25 48 85 48 89 0 11 0 41-23 67z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 374 352"
};
/** */
const UsdpColorful = exports.UsdpColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-usdp-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
UsdpColorful.displayName = 'UsdpColorful';