@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 3.89 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";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M121.17 938.714c130.673 0 228.875-113.643 287.48-203.444-7.127 19.868-11.088 39.735-11.088 58.807 0 52.452 30.095 89.802 89.491 89.802 81.572 0 168.687-71.523 213.83-148.61-3.17 11.127-4.752 21.459-4.752 30.994 0 36.556 20.59 59.604 62.564 59.604 132.257 0 265.305-234.438 265.305-439.47C1024 226.662 943.22 86 740.48 86 384.1 86 0 521.496 0 802.819c0 110.464 59.397 135.895 121.17 135.895Zm496.556-569.8c0-39.735 22.176-67.55 54.645-67.55 31.678 0 53.854 27.815 53.854 67.55s-22.176 68.343-53.854 68.343c-32.47 0-54.645-28.608-54.645-68.343Zm169.48 0c0-39.735 22.175-67.55 54.644-67.55 31.678 0 53.854 27.815 53.854 67.55s-22.176 68.343-53.854 68.343c-32.47 0-54.645-28.608-54.645-68.343Z",
fill: "#AB9FF2",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const PhantomColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-phantom-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PhantomColorful.displayName = 'PhantomColorful';