@ant-design/web3-icons
Version:
A collection of Web3 icons.
49 lines • 3.78 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: "M111.6 119.1h234c.7 0 1.3.2 1.8.6l95.2 70c1.4 1 1.6 2.9.6 4.3-.6.8-1.5 1.2-2.5 1.2H193.6c-1.7 0-3.1 1.4-3.1 3.1V288c0 1.7 1.4 3.1 3.1 3.1h157.5c1.7 0 3.1 1.4 3.1 3.1v65.4c0 1.7-1.4 3.1-3.1 3.1H110.5c-1.7 0-3.1-1.4-3.1-3.1l1.1-237.3c0-1.8 1.3-3.1 3.1-3.2-.1 0 0 0 0 0z",
fill: "#0e67ae"
}), /*#__PURE__*/_jsx("path", {
d: "M448.9 450.8H205.4c-.7 0-1.3-.2-1.8-.6L114.1 384c-1.4-1-1.6-2.9-.6-4.3.6-.8 1.5-1.2 2.5-1.2h251c1.7 0 3.1-1.4 3.1-3.1v-97.3c0-1.7-1.4-3.1-3.1-3.1H211.8c-1.7 0-3.1-1.4-3.1-3v-57.7c0-1.7 1.4-3.1 3-3.1H450c1.7 0 3.1 1.4 3.1 3.1L452 447.8c-.1 1.7-1.4 3-3.1 3z",
fill: "#0e67ae"
}), /*#__PURE__*/_jsx("circle", {
cx: "281.6",
cy: "281.6",
r: "268.6",
fill: "none",
stroke: "#0e67ae",
strokeWidth: "26",
strokeMiterlimit: "10"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 563.2 563.2",
xmlSpace: "preserve",
enableBackground: "new 0 0 563.2 563.2"
};
/** */
export const StrongCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-strong-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
StrongCircleColorful.displayName = 'StrongCircleColorful';