@ant-design/web3-icons
Version:
A collection of Web3 icons.
56 lines (55 loc) • 6.19 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BSCCircleColorful = 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: "M512 32c265.115 0 480 214.885 480 480S777.115 992 512 992 32 777.115 32 512 246.885 32 512 32z",
fill: "#F0B90B"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m295.808 512 .346 126.923L404 702.385v74.307L233.038 676.423V474.885L295.808 512zm0-126.923v73.961L233 421.885v-73.962l62.808-37.154 63.115 37.154-63.115 37.154zm153.23-37.154 62.808-37.154 63.116 37.154-63.116 37.154-62.808-37.154z",
fill: "#FFF"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M341.192 612.615v-74.307L404 575.462v73.961l-62.808-36.808zM449.038 729l62.808 37.154L574.962 729v73.962l-63.116 37.153-62.808-37.153V729zm216-381.077 62.808-37.154 63.116 37.154v73.962l-63.116 37.153v-73.961l-62.808-37.154zm62.808 291L728.192 512 791 474.846v201.539L620.038 776.654v-74.308l107.808-63.423z",
fill: "#FFF"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M682.808 612.615 620 649.423v-73.961l62.808-37.154v74.307z",
fill: "#FFF"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m682.808 411.385.346 74.307L575 549.154v127.23l-62.808 36.808-62.807-36.807V549.154L341.23 485.692v-74.307l63.077-37.154L511.808 438l108.154-63.77 63.115 37.155h-.27zM341.192 284.5l170.654-100.615L682.808 284.5 620 321.654l-108.154-63.77L404 321.655 341.192 284.5z",
fill: "#FFF"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
const BSCCircleColorful = exports.BSCCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bsc-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
BSCCircleColorful.displayName = 'BSCCircleColorful';