@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 3.32 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: "195",
cy: "195",
r: "195",
fill: "#4B5CF0"
}), /*#__PURE__*/_jsx("path", {
d: "M290.3 99.1v191.2h-41.2v-99.9h-33.9c-4 0-7.8 1.5-10.7 4.1-1.7 1.5-2.9 3.3-3.8 5.4-.9 2.1-1.4 4.2-1.4 6.5v23c0 6.1-5 11.3-11.3 11.3h-27.2c-6.1 0-11.3-5-11.3-11.3v-27.8c0-6.1 5-11.3 11.3-11.3h24.6c3.3 0 6.5-1.1 8.9-3.3 1.5-1.3 2.8-2.9 3.7-4.9.9-1.8 1.3-3.8 1.3-5.9v-36.1H99.9V99ZM149.5 265.6v.4c0 13.8-11.1 24.9-24.9 24.9-13.8 0-24.8-11.1-24.8-24.9v-.4c0-13.8 11.1-24.9 24.9-24.9 6.9 0 13.1 2.8 17.6 7.3 4.5 4.6 7.1 10.7 7.2 17.6z",
fill: "#FFF"
})]
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 390 390",
xmlSpace: "preserve",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const RifCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-rif-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
RifCircleColorful.displayName = 'RifCircleColorful';