@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 3.75 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";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsx("path", {
fill: "#4CA3FF",
fillRule: "evenodd",
d: "m747.01 430.071-.018.046c40.797 52.381 65.177 118.727 65.177 190.889 0 73.234-25.111 140.48-67.008 193.217l-3.608 4.54-.956-5.77a277.643 277.643 0 0 0-2.88-14.857c-20.968-94.34-89.284-175.234-201.724-240.734-75.929-44.11-119.391-97.224-130.802-157.571-7.369-39.023-1.89-78.219 8.698-111.791 10.585-33.562 26.331-61.681 39.708-78.61l.009-.011 43.739-54.768a18.906 18.906 0 0 1 29.697 0l219.968 275.42Zm69.182-54.717.008-.02L523.029 8.257a13.8 13.8 0 0 0-21.675 0L208.18 375.337l.008.021-.953 1.212C153.285 445.122 121 532.24 121 627.076 121 847.944 296.139 1027 512.192 1027s391.191-179.056 391.191-399.924c0-94.834-32.285-181.953-86.234-250.506l-.957-1.216Zm-537.864 53.535.012-.015 26.222-32.834.793 6.062a270.819 270.819 0 0 0 2.292 14.475c16.967 91.159 77.578 167.17 178.913 226.038 88.085 51.336 139.37 110.368 154.148 175.11 6.165 27.02 7.264 53.603 4.594 76.846l-.166 1.438-1.27.636c-39.756 19.888-84.448 31.05-131.683 31.05-165.674 0-299.986-137.306-299.986-306.69 0-72.723 24.759-139.546 66.131-192.116Z"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const SuiColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-sui-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SuiColorful.displayName = 'SuiColorful';