@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 5.3 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", {
transform: "translate(112 112)",
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
fill: "#555",
fillRule: "nonzero",
cx: "400",
cy: "400",
r: "400"
}), /*#__PURE__*/_jsx("path", {
d: "M288.571 264.286h224.286c8.572 0 15.714 1.428 24.286 5.714 10 4.286 15.714 11.429 18.571 17.143 0 0 0 1.428 1.429 1.428 4.286 7.143 7.143 15.715 7.143 25.715 0 8.571-1.429 17.143-7.143 25.714L415.714 582.857c-2.857 5.714-8.571 8.572-15.714 8.572-5.714 0-11.429-2.858-15.714-8.572L245.714 340c-2.857-5.714-8.571-12.857-8.571-24.286-1.429-10 1.428-18.571 5.714-27.143 4.286-8.571 11.429-15.714 21.429-18.571 8.571-5.714 18.571-5.714 24.285-5.714Zm94.286 34.285h-94.286c-5.714 0-8.571 0-10 1.429-2.857 1.429-4.285 2.857-5.714 5.714-1.428 1.429-1.428 4.286-1.428 7.143 0 1.429 1.428 2.857 4.285 8.572l107.143 185.714V298.57Zm34.286 0v210L525.714 321.43c1.429-2.858 1.429-5.715 1.429-8.572 0-2.857 0-5.714-1.429-7.143-1.428-1.428-1.428-2.857-2.857-2.857l-1.428-1.428c-2.858-1.429-5.715-1.429-10-1.429h-94.286v-1.429Z",
fill: "#FFF"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const ToncoinCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-toncoin-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ToncoinCircleFilled.displayName = 'ToncoinCircleFilled';