@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines • 2.8 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: "M599 0C268.2 0 0 268.2 0 599s268.2 599 599 599c330.7-.4 598.6-268.4 599-599C1198 268.2 929.8 0 599 0z",
fill: "#4138ac"
}), /*#__PURE__*/_jsx("circle", {
cx: "599",
cy: "599",
r: "599",
fill: "#4138ac"
}), /*#__PURE__*/_jsx("path", {
d: "M781.7 335.5 641 770.1 500.2 335.5H233.6l41.5 117.6h123.6l178.4 505.1h127.8l219.9-622.7H781.7z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1198 1198",
xmlSpace: "preserve",
enableBackground: "new 0 0 1198 1198"
};
/** */
export const VspCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-vsp-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
VspCircleColorful.displayName = 'VspCircleColorful';