@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 3.37 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: "M1002.8 0c90.8 153.6 178.4 309.1 268.3 463.2 13 20 16.8 44 16.5 67.5v554.8c-123.4-43.7-260.9-51.3-386.1-10.3-67 20.6-127.5 57.1-184.8 96.7.2-217.5.2-435.1 0-652.7 0-15.9.5-32.4 10.3-45.8C819.3 315.9 911.3 158.1 1002.8 0zM0 1725.7c168.4-290.5 337.3-580.7 506.8-870.8 3.2 290.6 1.2 581.4 1.1 872-169.2-1.5-338.6 0-507.9-1.2M1494.8 856.4c171.5 289.1 336.4 582.2 505.2 873-168.6.6-337.1-1-505.6 0-.6-291.1-1.5-582.1.4-873M1008.5 1243.1c94.7-16.1 193.3 5.1 275.7 53.7 2.4 143.9-1.7 287.9 3.9 431.6-183.5.7-367.1-.6-550.6-1.3-19.1-76-28-157-6.6-233.6 34-127.6 147-230.1 277.6-250.4",
fill: "#020041"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 1729.5",
xmlSpace: "preserve",
enableBackground: "new 0 0 2000 1729.5"
};
/** */
export const AchColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ach-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
AchColorful.displayName = 'AchColorful';