@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 3.9 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: "M218.877 831.535c98.005 0 171.657-85.232 215.61-152.583-5.345 14.901-8.316 29.801-8.316 44.106 0 39.339 22.572 67.351 67.119 67.351 61.179 0 126.515-53.642 160.372-111.457-2.377 8.345-3.564 16.094-3.564 23.245 0 27.417 15.442 44.703 46.924 44.703C796.214 746.9 896 571.072 896 417.298 896 297.496 835.415 192 683.36 192 416.075 192 128 518.622 128 729.614c0 82.848 44.548 101.921 90.877 101.921Zm372.418-427.35c0-29.8 16.631-50.662 40.983-50.662 23.759 0 40.39 20.861 40.39 50.663 0 29.8-16.631 51.257-40.39 51.257-24.352 0-40.983-21.456-40.983-51.257Zm127.109 0c0-29.8 16.632-50.662 40.983-50.662 23.759 0 40.39 20.861 40.39 50.663 0 29.8-16.631 51.257-40.39 51.257-24.351 0-40.983-21.456-40.983-51.257Z",
fill: "currentColor",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const PhantomFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-phantom-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PhantomFilled.displayName = 'PhantomFilled';