@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 6.01 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: "M-.5 22.4C-.5 10 9.4 0 21.5 0s22 10 22 22.4-9.8 22.4-22 22.4c-12.1.1-22-10-22-22.4z",
transform: "matrix(5.7046 0 0 5.7046 2.652 0)",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#278dc1"
}), /*#__PURE__*/_jsx("path", {
d: "M15.2 20.7c-1.5 0-2.6-1.2-2.6-2.7 0-1.5 1.2-2.7 2.6-2.7 1.5 0 2.6 1.2 2.6 2.7 0 1.5-1.1 2.7-2.6 2.7zM20 10.6h-2.1V14c-.8-.5-1.7-.8-2.6-.8-2.6 0-4.8 2.2-4.8 4.9s2.1 4.9 4.8 4.9c2.6 0 4.8-2.2 4.8-4.9v-7.5zM27.8 24.2c1.5 0 2.6 1.2 2.6 2.7 0 1.5-1.2 2.7-2.6 2.7-1.5 0-2.6-1.2-2.6-2.7 0-1.5 1.2-2.7 2.6-2.7zM23 34.3h2.1v-3.4c.8.5 1.7.8 2.6.8 2.6 0 4.8-2.2 4.8-4.9s-2.1-4.9-4.8-4.9c-2.6 0-4.8 2.2-4.8 4.9l.1 7.5zM25.3 14c1.5 0 2.6 1.2 2.6 2.7 0 1.5-1.2 2.7-2.6 2.7s-2.6-1.2-2.6-2.7c0-1.5 1.2-2.7 2.6-2.7zm.1-2.1c-2.7 0-4.8 2.2-4.8 4.9s2.1 4.9 4.8 4.9c2.6 0 4.8-2.2 4.8-4.9 0-1-.3-1.9-.8-2.7h3.3v-2.2h-7.3zM17.7 30.8c-1.5 0-2.6-1.2-2.6-2.7 0-1.5 1.2-2.7 2.6-2.7 1.5 0 2.6 1.2 2.6 2.7 0 1.5-1.2 2.7-2.6 2.7zm-.1 2.2c.1 0 .1 0 0 0 2.7 0 4.8-2.2 4.8-4.9s-2.1-4.9-4.8-4.9c-2.6 0-4.8 2.2-4.8 4.9 0 1 .3 1.9.8 2.7h-3.3V33h7.3z",
transform: "matrix(5.7046 0 0 5.7046 2.652 0)",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#fffffe"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 250.7 256",
xmlSpace: "preserve",
enableBackground: "new 0 0 250.7 256"
};
/** */
export const XdbCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-xdb-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
XdbCircleColorful.displayName = 'XdbCircleColorful';