@ant-design/web3-icons
Version:
A collection of Web3 icons.
43 lines • 2.44 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: "79.9",
cy: "79.9",
r: "79.9",
fill: "#5546ff"
}), /*#__PURE__*/_jsx("path", {
d: "M112.5 122 95.3 95H120V84.8H39V95h24.7l-17.2 27h12.8l20.2-31.7L99.7 122h12.8zm7.5-47.1V64.7H95.8l17-26.7H99.9L79.5 70.2 59.1 38H46.2l17 26.7H39V75l81-.1z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 159.8 159.8",
xmlSpace: "preserve",
enableBackground: "new 0 0 159.8 159.8"
};
/** */
export const StxCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-stx-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
StxCircleColorful.displayName = 'StxCircleColorful';