@ant-design/web3-icons
Version:
A collection of Web3 icons.
54 lines (53 loc) • 4.89 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.IdCircleColorful = 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: "M1250 0c688 0 1250 563 1250 1250 0 688-563 1250-1250 1250C562 2500 0 1937 0 1250 0 562 563 0 1250 0z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#1eefa4"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M1384 1530c0-67 54-122 122-122h49c67 0 121 54 121 122v49c0 67-54 122-122 122h-49c-67 0-121-54-121-122v-49zm122-559c-67 0-121 54-121 122v49c0 67 54 122 122 122h49c67 0 121-54 121-122v-49c0-67-54-122-122-122h-49z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M946 460c-269 0-486 218-486 486v608c0 269 218 486 486 486h608c269 0 486-218 486-486V946c0-269-218-486-486-486H946zm608 194H946c-161 0-292 131-292 292v608c0 161 131 292 292 292h608c161 0 292-131 292-292V946c0-161-131-292-292-292z",
fillRule: "evenodd",
clipRule: "evenodd"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500",
xmlSpace: "preserve",
enableBackground: "new 0 0 2500 2500"
};
/** */
const IdCircleColorful = exports.IdCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-id-circle-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
IdCircleColorful.displayName = 'IdCircleColorful';