@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 3.34 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("circle", {
cx: "28",
cy: "28",
r: "28",
fill: "#08c"
}), /*#__PURE__*/_jsx("path", {
d: "M20.2 18.5h15.7c.6 0 1.1.1 1.7.4.7.3 1.1.8 1.3 1.2 0 0 0 .1.1.1.3.5.5 1.1.5 1.8 0 .6-.1 1.2-.5 1.8l-9.9 17c-.2.4-.6.6-1.1.6-.4 0-.8-.2-1.1-.6l-9.7-17c-.2-.4-.6-.9-.6-1.7-.1-.7.1-1.3.4-1.9.3-.6.8-1.1 1.5-1.3.6-.4 1.3-.4 1.7-.4zm6.6 2.4h-6.6c-.4 0-.6 0-.7.1-.2.1-.3.2-.4.4-.1.1-.1.3-.1.5 0 .1.1.2.3.6l7.5 13V20.9zm2.4 0v14.7l7.6-13.1c.1-.2.1-.4.1-.6 0-.2 0-.4-.1-.5-.1-.1-.1-.2-.2-.2l-.1-.1c-.2-.1-.4-.1-.7-.1h-6.6z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 56 56",
xmlSpace: "preserve",
enableBackground: "new 0 0 56 56"
};
/** */
export const TonCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ton-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TonCircleColorful.displayName = 'TonCircleColorful';