@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 3.85 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: "M128 0c70.6 0 128 57.3 128 127.9s-57.4 127.9-128 127.9S0 198.5 0 127.9 57.4 0 128 0z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#48a9a6"
}), /*#__PURE__*/_jsx("path", {
d: "M62.3 88.6h52.6V62.3H62.3zM141.1 88.6h52.6V62.3h-52.6zM193.7 141.1h-26.3v26.3h-26.3v26.3h52.6zM114.9 193.7v-26.3H88.6v-26.3H62.3v52.6z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 256 255.8",
xmlSpace: "preserve",
enableBackground: "new 0 0 256 255.8"
};
/** */
export const StakeCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-stake-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
StakeCircleColorful.displayName = 'StakeCircleColorful';