@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines • 3.74 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: "M1250 0c688 0 1250 563 1250 1250 0 688-563 1250-1250 1250C562 2500 0 1937 0 1250 0 562 563 0 1250 0z",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#1eefa4"
}), /*#__PURE__*/_jsx("path", {
d: "M1384 1530c0-67 54-122 122-122h49c67 0 121 54 121 122v49c0 67-54 122-122 122h-49c-67 0-121-54-121-122v-49zm122-559c-67 0-121 54-121 122v49c0 67 54 122 122 122h49c67 0 121-54 121-122v-49c0-67-54-122-122-122h-49z"
}), /*#__PURE__*/_jsx("path", {
d: "M946 460c-269 0-486 218-486 486v608c0 269 218 486 486 486h608c269 0 486-218 486-486V946c0-269-218-486-486-486H946zm608 194H946c-161 0-292 131-292 292v608c0 161 131 292 292 292h608c161 0 292-131 292-292V946c0-161-131-292-292-292z",
fillRule: "evenodd",
clipRule: "evenodd"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 2500 2500",
xmlSpace: "preserve",
enableBackground: "new 0 0 2500 2500"
};
/** */
export const IdCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-id-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
IdCircleColorful.displayName = 'IdCircleColorful';