@ant-design/web3-icons
Version:
A collection of Web3 icons.
42 lines • 4.26 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: "M29.6 0C13.1.2-.2 13.8 0 30.4S13.8 60.2 30.4 60C46.8 59.8 60 46.5 60 30 59.9 13.3 46.3-.1 29.6 0z",
fill: "#00edbe"
}), /*#__PURE__*/_jsx("path", {
d: "M329.4 146.2c-.1-1.5.3-3 1.1-4.3H306c-.9 0-1.7.7-1.7 1.7v5.2c0 .9.8 1.7 1.7 1.7h24.5c-.9-1.3-1.2-2.8-1.1-4.3M300.4 157.4c.1 1.5-.3 3-1.1 4.3h24.5c.9 0 1.7-.7 1.7-1.7v-5.2c0-.9-.8-1.7-1.7-1.7h-24.5c.8 1.3 1.2 2.8 1.1 4.3M329.4 168.6c-.1-1.5.3-3 1.1-4.3H306c-.9 0-1.7.7-1.7 1.7v5.2c0 .9.8 1.7 1.7 1.7h24.5c-.9-1.3-1.2-2.8-1.1-4.3",
transform: "translate(-287.696 -127.304)",
fill: "#141beb"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 60 60",
xmlSpace: "preserve",
enableBackground: "new 0 0 60 60"
};
/** */
export const EduCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-edu-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EduCircleColorful.displayName = 'EduCircleColorful';