@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 4.25 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: "M534.7 170.9c-31.9 53.7-101.3 71.4-155 39.5s-71.4-101.3-39.5-155 101.3-71.4 155-39.5c53.7 31.9 71.4 101.3 39.5 155M148.6 120.7c-22.5 37.9-71.6 50.4-109.5 27.9C1.2 126.1-11.3 77.1 11.2 39.1s71.6-50.4 109.5-27.9c38 22.6 50.5 71.6 27.9 109.5M1223.4 1757.7c414.4-48.7 747.7-387.5 774.9-818.7 30.6-485.2-338-903.3-823.2-933.8-56.9-3.6-114-1.6-170.5 5.8C888 20.5 789.5 65 789.5 65c-79.8 39-131.3 104.2-131.3 191.4 0 113.4 91.9 205.4 205.3 205.4 19 0 84.6-20.8 100.2-26.2a471.09 471.09 0 0 1 185.8-25.3c167.6 10.6 309.3 107 385.2 243.7 44 79.2 64.3 169.3 58.5 259.7-16.5 261.5-241.8 460.2-503.4 443.7-154.5-9.8-287-92.5-366.3-212.4v.1-.1c-94.8-124-72.9-322.3-73-324.8-3.9-110.3-94.2-198.5-205.4-198.5-95 0-174.7 64.5-198.4 152-4.6 17.2-7 67.6-6.3 74.3-19.6 476.8 345.3 884.1 823.9 914.2 53.1 3.3 106.3 1.8 159.1-4.5M416.9 484.9c-41.4 69.7-131.4 92.6-201 51.2s-92.6-131.4-51.2-201 131.4-92.6 201-51.2c69.6 41.4 92.5 131.4 51.2 201",
fill: "#5f45ba"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2000 1764",
xmlSpace: "preserve",
enableBackground: "new 0 0 2000 1764"
};
/** */
export const OxtColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-oxt-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
OxtColorful.displayName = 'OxtColorful';