@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines (44 loc) • 4.5 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.TeraColorful = 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: "M120.53 97.82v-.06a.56.56 0 0 0 0-.08L61.66.82 61.58.7a1.53 1.53 0 0 0-2.12-.45 1.63 1.63 0 0 0-.46.43l-.08.13Q53 10.59 47 20.32a3.39 3.39 0 0 0 0 3.87Q54.93 37.09 62.81 50a3.66 3.66 0 0 1 0 4.19C54.15 68.43 45 83.4 36.26 97.7a1.55 1.55 0 0 0 .63 2.09 1.51 1.51 0 0 0 .72.18H63a1.53 1.53 0 0 0 1.36-.81l.87-1.46L77 78.36a1.53 1.53 0 0 1 2.09-.61 1.44 1.44 0 0 1 .53.48l11.66 19L92.36 99a1.55 1.55 0 0 0 1.35.8h.71a2.16 2.16 0 0 0 .36 0h24.32a1.54 1.54 0 0 0 1.54-1.53 1.56 1.56 0 0 0-.11-.45Z"
}), /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "m52.85 55.15.85-1.4a3 3 0 0 0 0-3.43l-5.22-8.46-6-9.67a1.53 1.53 0 0 0-2.12-.5 1.51 1.51 0 0 0-.55.57L.18 97.71a1.54 1.54 0 0 0 .63 2.08 1.42 1.42 0 0 0 .73.19h23.28a1.54 1.54 0 0 0 1.35-.8l.89-1.48a1.63 1.63 0 0 0 .11-.17l1-1.6c8.29-13.75 16.23-26.88 24.54-40.56a2 2 0 0 0 .14-.22Z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 120.64 99.98"
};
/** */
const TeraColorful = exports.TeraColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(_antd.ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-tera-colorful');
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_icons.default, {
...props,
className: (0, _classnames.default)(prefixCls, props.className),
ref: ref,
component: (0, _utils.eraseDefaultProps)(SVGComponent)
});
});
TeraColorful.displayName = 'TeraColorful';