@ant-design/web3-icons
Version:
A collection of Web3 icons.
40 lines • 5.52 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: "currentColor",
children: [/*#__PURE__*/_jsx("path", {
d: "M874.848 730.514c-75.634 0-145.45-75.75-181.52-122.365-36.073 46.615-105.89 122.365-181.523 122.365-75.634 0-145.45-75.75-181.52-122.365-33.746 46.615-103.562 122.365-179.194 122.365-16.291 0-29.091-12.818-29.091-29.135 0-16.316 12.8-29.135 29.09-29.135 60.508 0 134.978-96.729 155.921-130.523 5.819-8.16 15.128-13.987 24.437-13.987s19.782 4.662 24.436 13.987c20.943 33.794 95.414 130.523 155.92 130.523 60.51 0 134.978-96.729 155.924-130.523 5.818-8.16 15.127-13.987 24.436-13.987 10.473 0 19.782 4.662 24.434 13.987 20.946 33.794 95.416 130.523 155.923 130.523 16.29 0 29.09 12.819 29.09 29.135s-10.472 29.135-26.763 29.135"
}), /*#__PURE__*/_jsx("path", {
d: "M874.848 896c-75.634 0-145.45-75.75-181.52-122.366C657.255 820.25 587.438 896 511.805 896c-75.634 0-145.45-75.75-181.52-122.366C296.538 820.25 226.722 896 151.09 896 134.8 896 122 883.181 122 866.865c0-16.314 12.8-29.135 29.09-29.135 60.508 0 134.978-96.727 155.921-130.523 5.819-8.16 15.128-13.985 24.437-13.985s19.782 4.662 24.436 13.985c20.943 33.796 95.414 130.523 155.92 130.523 60.51 0 134.978-96.727 155.924-130.523 5.818-8.16 15.127-13.985 24.436-13.985 10.473 0 19.782 4.662 24.434 13.985 20.946 33.796 95.416 130.523 155.923 130.523 16.29 0 29.09 12.82 29.09 29.135S891.14 896 874.849 896M170.87 597.66c-13.963 0-25.597-9.324-29.088-23.308-3.491-23.308-5.818-46.615-5.818-68.76 0-208.605 168.72-377.586 377.004-377.586 208.285-1.166 377.007 168.981 377.007 377.586 0 23.308-2.327 45.452-5.818 67.594-2.327 16.316-17.454 26.803-33.745 23.308-16.289-2.33-26.762-17.48-23.27-33.797 3.49-18.646 4.654-38.458 4.654-57.105 0-175.974-143.123-319.318-318.828-319.318-175.702 0-318.825 142.178-318.825 319.318 0 19.813 2.327 39.625 5.818 58.27 2.328 16.317-6.981 31.466-23.272 33.798z"
})]
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1024 1024"
};
/** */
export const SuietFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-suiet-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SuietFilled.displayName = 'SuietFilled';