@ant-design/web3-icons
Version:
A collection of Web3 icons.
40 lines • 3.91 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: "M0 24C0 10.745 10.745 0 24 0s24 10.745 24 24-10.745 24-24 24S0 37.255 0 24Z",
fill: "#0C0A1F"
}), /*#__PURE__*/_jsx("path", {
d: "M13.136 32.108c1.034 3.86 4.897 7.354 12.89 5.213 7.625-2.044 12.405-8.317 11.166-12.942-.428-1.597-1.717-2.678-3.705-2.503l-17.77 1.481c-1.12.086-1.633-.097-1.929-.803-.287-.672-.123-1.393 1.228-2.076l13.524-6.94c1.037-.528 1.727-.749 2.358-.525.395.143.656.715.417 1.421l-.877 2.59c-1.076 3.176 1.227 3.914 2.526 3.566 1.965-.526 2.427-2.398 1.794-4.76-1.605-5.99-7.959-6.926-13.72-5.382-5.861 1.57-10.942 6.32-9.39 12.11.365 1.364 1.62 2.454 3.075 2.42l2.22-.005c.457-.01.293.027 1.174-.046s3.234-.362 3.234-.362l11.545-1.307.298-.043c.675-.115 1.185.06 1.617.803.645 1.112-.34 1.951-1.519 2.955l-.095.081-10.149 8.747c-1.74 1.5-2.961.936-3.39-.662l-1.515-5.656c-.374-1.398-1.739-2.494-3.337-2.066-1.998.536-2.16 2.861-1.67 4.691Z",
fill: "#FBFAFF"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
fill: "none"
};
/** */
export const SlushCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-slush-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
SlushCircleFilled.displayName = 'SlushCircleFilled';