@ant-design/web3-icons
Version:
A collection of Web3 icons.
85 lines • 7.82 kB
JavaScript
import { useUniqueInlineId } from '@inline-svg-unique-id/react';
// 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) {
const _id2 = useUniqueInlineId();
const _id = useUniqueInlineId();
return /*#__PURE__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsxs("defs", {
children: [/*#__PURE__*/_jsx("clipPath", {
id: _id,
children: /*#__PURE__*/_jsx("path", {
d: "M0 0h800v800H0z"
})
}), /*#__PURE__*/_jsx("clipPath", {
id: _id2,
children: /*#__PURE__*/_jsx("path", {
d: "M0 0h1728v1728H0Z"
})
})]
}), /*#__PURE__*/_jsx("g", {
clipPath: `url(#${_id})`,
transform: "translate(-99.69 -99.947)",
children: /*#__PURE__*/_jsxs("g", {
clipPath: `url(#${_id2})`,
transform: "translate(-668.3 -668.509) scale(1.2367)",
display: "block",
children: [/*#__PURE__*/_jsx("path", {
strokeLinecap: "round",
strokeMiterlimit: "10",
stroke: "#000",
strokeWidth: "35",
d: "m119.067-87.47-145.507.23c-48.18 0-87.24 39.06-87.24 87.24 0 48.18 39.06 87.24 87.24 87.24h140.12",
fill: "none",
transform: "matrix(1.29947 0 0 1.29947 895.78 864)",
display: "block"
}), /*#__PURE__*/_jsx("path", {
strokeLinecap: "round",
strokeMiterlimit: "10",
stroke: "#000",
strokeWidth: "35",
d: "M2.309 17.5H338.42",
fill: "none",
transform: "matrix(1.29947 0 0 1.29947 643.74 841.26)",
display: "block"
}), /*#__PURE__*/_jsx("path", {
strokeLinecap: "round",
strokeMiterlimit: "10",
stroke: "#000",
strokeWidth: "35",
d: "M0-169.21c93.452 0 169.21 75.758 169.21 169.21 0 93.452-75.758 169.21-169.21 169.21-93.452 0-169.21-75.758-169.21-169.21 0-93.452 75.758-169.21 169.21-169.21Z",
fill: "none",
transform: "matrix(1.29947 0 0 1.29947 863.623 864)",
display: "block"
})]
})
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 600.106 600.106",
preserveAspectRatio: "xMidYMid",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const WldCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-wld-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
WldCircleColorful.displayName = 'WldCircleColorful';