@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 5.92 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("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "M195.324 175.212h632.671v575.403H195.324z"
}), /*#__PURE__*/_jsx("path", {
d: "M1024 512c0 282.773-229.227 512-512 512C229.23 1024 0 794.773 0 512 0 229.23 229.23 0 512 0c282.773 0 512 229.23 512 512Z",
fill: "#4DA2FF"
}), /*#__PURE__*/_jsx("path", {
d: "M681.403 452.415c29.22 36.639 46.827 83.185 46.827 133.658 0 50.472-17.981 98.327-48.138 135.34l-2.622 3.178-.75-4.112c-.561-3.365-1.31-6.917-2.06-10.469-14.984-65.988-64.059-122.629-144.975-168.615-54.506-30.844-85.787-68.044-94.028-110.29-5.245-27.293-1.311-54.773 6.181-78.326 7.68-23.554 18.918-43.182 28.47-54.96l31.468-38.32c5.432-6.73 15.921-6.73 21.353 0l158.274 192.916Zm49.637-38.322L520.507 157.245c-3.934-4.86-11.613-4.86-15.547 0L294.24 414.093l-.749.935C254.906 463.07 231.68 524.01 231.68 590.372c0 154.595 125.87 280.028 280.96 280.028 155.09 0 280.96-125.433 280.96-280.028 0-66.361-23.226-127.302-61.999-175.344l-.561-.935Zm-386.414 37.574 18.73-22.993.563 4.3c.374 3.364.936 6.73 1.685 10.094 12.175 63.745 55.818 117.02 128.493 158.146 63.31 35.892 100.021 77.204 110.698 122.63 4.495 18.88 5.244 37.573 3.371 53.837l-.187.934-.936.374c-28.471 13.833-60.688 21.684-94.59 21.684-118.94 0-215.403-96.084-215.403-214.6 0-50.846 17.794-97.767 47.576-134.406Z",
fill: "#FFF"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const SuiCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-sui-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SuiCircleColorful.displayName = 'SuiCircleColorful';