@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 3.73 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", {
fillRule: "evenodd",
d: "m692.776 448.304-.014.033c31.332 39.287 50.056 89.046 50.056 143.167 0 54.926-19.285 105.36-51.462 144.913l-2.771 3.406-.735-4.328a203.89 203.89 0 0 0-2.211-11.143c-16.104-70.754-68.57-131.426-154.924-180.55-58.314-33.083-91.693-72.918-100.456-118.179-5.66-29.267-1.452-58.664 6.68-83.843 8.129-25.171 20.222-46.26 30.495-58.957l.007-.009 33.592-41.076c5.891-7.203 16.916-7.203 22.807 0l168.936 206.566Zm53.131-41.038.007-.016-225.156-275.308c-4.298-5.256-12.347-5.256-16.646 0L278.955 407.253l.006.016-.733.908C236.795 459.592 212 524.931 212 596.057 212 761.708 346.507 896 512.435 896c165.93 0 300.435-134.292 300.435-299.943 0-71.125-24.795-136.465-66.228-187.88l-.735-.911Zm-413.08 40.15.01-.01 20.139-24.626.609 4.546a197.868 197.868 0 0 0 1.76 10.857c13.03 68.369 59.58 125.377 137.405 169.528 67.65 38.502 107.036 82.776 118.386 131.333 4.734 20.264 5.578 40.202 3.528 57.634l-.128 1.079-.975.477c-30.533 14.916-64.856 23.288-101.132 23.288-127.238 0-230.39-102.98-230.39-230.018 0-54.542 19.015-104.66 50.789-144.087Z"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const SuiFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-sui-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SuiFilled.displayName = 'SuiFilled';