@ant-design/web3-icons
Version:
A collection of Web3 icons.
46 lines • 3.31 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__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
fill: "#0052FF",
fillRule: "nonzero",
cx: "512",
cy: "512",
r: "512"
}), /*#__PURE__*/_jsx("path", {
d: "M153.6 512c0 197.94 160.46 358.4 358.4 358.4 197.94 0 358.4-160.46 358.4-358.4 0-197.94-160.46-358.4-358.4-358.4-197.94 0-358.4 160.46-358.4 358.4Zm266.81-115.485c-13.197 0-23.895 10.698-23.895 23.894v183.182c0 13.196 10.698 23.894 23.894 23.894h183.182c13.196 0 23.894-10.698 23.894-23.894V420.409c0-13.196-10.698-23.894-23.894-23.894H420.409Z",
fill: "#FFF"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const CoinbaseWalletCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-coinbase-wallet-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
CoinbaseWalletCircleColorful.displayName = 'CoinbaseWalletCircleColorful';