@ant-design/web3-icons
Version:
A collection of Web3 icons.
49 lines • 3.68 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("circle", {
cx: "297.6",
cy: "297.6",
r: "297.6",
fill: "#0080ff"
}), /*#__PURE__*/_jsx("path", {
d: "M319 141.6H194.2c-9.7 0-18.4 4.4-24.1 11.4l-1.8 2.4c-3.4 5-5.3 11-5.3 17.4 0 16.6 12.9 30.1 29.2 31.1l.3.3h125.9c51.3 0 93.4 42 93.4 93.4 0 51.3-42 93.4-93.4 93.4h-80c-7.1-.1-12.8-5.8-13-12.8V391v-62.2h95.2c17.2 0 31.2-14 31.2-31.2s-14-31.2-31.2-31.2H193.3c-16.7 0-30.3 13.6-30.3 30.3v126.5c0 16.7 13.6 30.3 30.3 30.3H319c85.8 0 156-70.2 156-156 .1-85.7-70.2-155.9-156-155.9z",
fill: "#fff"
}), /*#__PURE__*/_jsx("path", {
d: "M225.4 341.7c.2-7.1 5.9-12.8 13-12.8h-13v12.8z",
fill: "#fff"
})]
});
};
SVGComponent.defaultProps = {
imageRendering: "optimizeQuality",
textRendering: "geometricPrecision",
shapeRendering: "geometricPrecision",
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 595.2 595.2",
xmlSpace: "preserve",
enableBackground: "new 0 0 595.2 595.2"
};
/** */
export const DgCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-dg-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
DgCircleColorful.displayName = 'DgCircleColorful';