@ant-design/web3-icons
Version:
A collection of Web3 icons.
64 lines (63 loc) • 7.51 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BnbCircleFilled = 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.jsx)("svg", {
...props,
children: /*#__PURE__*/(0, _jsxRuntime.jsxs)("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M512 112c220.93 0 400 179.07 400 400S732.93 912 512 912 112 732.93 112 512s179.07-400 400-400Z",
fill: "#555"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m331.84 512 .288 105.77L422 670.653v61.923l-142.468-83.558V481.071L331.84 512Zm0-105.77v61.635l-52.34-30.961v-61.635l52.34-30.961 52.596 30.961-52.596 30.962Zm127.692-30.96 52.34-30.962 52.596 30.961-52.596 30.962-52.34-30.962Z",
fill: "#FFF",
fillRule: "nonzero"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M369.66 595.846v-61.923L422 564.885v61.634l-52.34-30.673Zm89.872 96.987 52.34 30.962 52.596-30.962v61.635l-52.596 30.961-52.34-30.961v-61.635Zm180-317.564 52.34-30.961 52.596 30.961v61.635l-52.596 30.961v-61.634l-52.34-30.962Zm52.34 242.5L692.16 512l52.34-30.962v167.95l-142.468 83.557v-61.923l89.84-52.853Z",
fill: "#FFF",
fillRule: "nonzero"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "M654.34 595.846 602 626.52v-61.634l52.34-30.962z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m654.34 428.154.288 61.923-90.128 52.885v106.025l-52.34 30.673-52.34-30.673V542.962l-90.128-52.885v-61.923l52.564-30.962 89.584 53.141 90.128-53.14 52.596 30.96h-.224ZM369.66 322.417l142.212-83.846 142.468 83.846L602 353.378l-90.128-53.14L422 353.377l-52.34-30.961Z",
fill: "#FFF",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
const BnbCircleFilled = exports.BnbCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bnb-circle-filled');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
BnbCircleFilled.displayName = 'BnbCircleFilled';