@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 4.58 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
stroke: "#979797",
fill: "#FF060A",
cx: "512",
cy: "512",
r: "399.5"
}), /*#__PURE__*/_jsx("path", {
d: "M821.247 440.756c-28.112-25.969-67.001-65.625-98.674-93.75l-1.875-1.312a35.792 35.792 0 0 0-10.401-5.812c-76.372-14.25-431.806-80.718-438.74-79.874-1.943.272-3.8.977-5.435 2.062l-1.78 1.407a20.907 20.907 0 0 0-4.873 7.875L259 272.57v7.688c40.013 111.467 198.005 476.618 229.116 562.305 1.874 5.812 5.435 16.875 12.088 17.437h1.5c3.56 0 18.74-20.062 18.74-20.062S791.824 510.692 819.28 475.63a88.689 88.689 0 0 0 9.37-13.875 22.599 22.599 0 0 0-7.402-21ZM590.07 479.099l115.823-96.093 67.938 62.624L590.07 479.1Zm-44.98-6.281L345.68 309.32l322.636 59.53L545.09 472.818Zm17.992 42.843 204.095-32.906-233.332 281.246 29.237-248.34ZM318.598 325.632 528.41 503.755l-30.361 260.434-179.45-438.557Z",
fill: "#FFF",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const TronCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-tron-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TronCircleColorful.displayName = 'TronCircleColorful';