@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 2.16 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: "M551.8 549.9 400 701.7l-75.3-75.3c81.2-4.8 159.6-31.2 227.1-76.5zM695.7 394l-18.6-18.5L400 98.3 122.8 375.5 99 399.3l8.6 7.4c9.7 8.1 19.7 15.8 30 23 109.6 77.2 245.5 100.5 371 69.8 51.2-12.4 99.8-33.7 143.7-62.9 10.9-7.2 21.5-15 31.9-23.2 5.7-4.6 11.3-9.3 16.8-14.1zm-222.6 69.7c-82.7-50.8-177.9-77.5-274.9-77.1 126.4-55.1 281.5-62.6 423.7 19.2-45.3 28.8-95.9 48.5-148.8 57.9z",
fill: "#2b71ff"
})
});
};
SVGComponent.defaultProps = {
viewBox: "99 98.3 602 603.4",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const AstColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-ast-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
AstColorful.displayName = 'AstColorful';