@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 3.46 kB
JavaScript
// GENERATE BY ./scripts/generate.ts
// DON NOT EDIT IT MANUALLY
import * as React from 'react';
import AntdIcon from '@ant-design/icons';
import { ConfigProvider } from 'antd';
import classnames from 'classnames';
import { eraseDefaultProps } from "../utils";
import { jsx as _jsx } from "react/jsx-runtime";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M512 0C229.241 0 0 229.241 0 512s229.241 512 512 512c282.786 0 512-229.241 512-512S794.786 0 512 0z",
fill: "#109D84"
}), /*#__PURE__*/_jsx("path", {
d: "M0 0h1024v1024H0V0z",
fill: "#109D84"
}), /*#__PURE__*/_jsx("path", {
d: "M204.531 425.553 637.575 707.88c4.015 2.965 6.359 7.627 6.359 12.639l-2.128 137.297c0 14.74-17.786 22.15-28.214 11.749L203.668 491.789a30.18 30.18 0 0 1-8.892-21.369v-39.963c0-5.012 5.712-7.922 9.755-4.904zm235.25-271.225 412.025 381.413c5.794 5.659 9.055 13.473 9.055 21.558v41.498a6.116 6.116 0 0 1-9.728 4.959l-311.97-193.913a5.895 5.895 0 0 0-6.131-.469 5.905 5.905 0 0 0-3.22 5.238v20.777a25.526 25.526 0 0 0 7.68 18.243l96.445 94.424c6.413 6.278 9.997 14.848 9.997 23.848v80.222c0 4.635-5.497 7.007-8.892 3.854L476.968 508.524l-54.81-51.739a33.282 33.282 0 0 1-10.483-24.253V166.211c0-14.659 17.65-22.096 28.133-11.856l-.027-.027z",
fill: "#FFF"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const SafeheronColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-safeheron-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SafeheronColorful.displayName = 'SafeheronColorful';