@ant-design/web3-icons
Version:
A collection of Web3 icons.
41 lines • 3.48 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: "M1000 2000c552.3 0 1000-447.7 1000-1000S1552.3 0 1000 0 0 447.7 0 1000s447.7 1000 1000 1000z",
fill: "#20252f"
}), /*#__PURE__*/_jsx("path", {
d: "M1634.5 615.6h-212.1L1324.6 935h209.2l100.7-319.4zM1253.8 1166.3l-104.5-247c-11.7-30.5-32.3-56.7-59.1-75.3s-58.7-28.5-91.4-28.5c-32.3 0-63.9 9.6-90.6 27.8-26.7 18.1-47.4 43.9-59.3 73.9l-108.7 248.6-165.9-549.9H365.6l247.9 806.7c4.6 14.8 13.8 27.7 26.2 36.8 12.4 9.2 27.5 14.1 42.9 14.1h119.9c14.5.1 28.8-4.1 40.9-12.2 12.1-8.1 21.5-19.6 26.9-33L998.8 1112l130.6 317.3c5.4 13.4 14.7 24.8 26.7 32.8 12 8.1 26 12.4 40.5 12.4h118c15.4 0 30.4-4.9 42.8-14.1 12.4-9.1 21.6-22 26.2-36.7l117.7-382.2H1293l-39.2 124.8z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 2000",
xmlSpace: "preserve",
enableBackground: "new 0 0 2000 2000"
};
/** */
export const WooCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-woo-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
WooCircleColorful.displayName = 'WooCircleColorful';