@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 4.36 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("circle", {
cx: "400",
cy: "400",
r: "400",
transform: "translate(112 112)",
fill: "#555"
}), /*#__PURE__*/_jsx("path", {
d: "m663.666 287.504-104.329 154.69c-7.214 10.535 6.66 23.287 16.649 14.416l102.663-89.266c2.775-2.217 6.66-.554 6.66 3.327v278.886c0 3.88-4.995 5.544-7.215 2.772L367.33 280.85C357.339 268.653 342.91 262 326.818 262h-11.099C286.862 262 263 285.841 263 315.227v392.546C263 737.16 286.862 761 316.274 761c18.313 0 35.516-9.426 45.505-25.504l104.329-154.69c7.214-10.535-6.66-23.287-16.649-14.416l-102.663 88.711c-2.775 2.218-6.66.555-6.66-3.327v-278.33c0-3.882 4.995-5.545 7.215-2.773L658.117 742.15c9.988 12.198 24.972 18.851 40.51 18.851h11.099C739.138 761 763 737.159 763 707.773V315.227C763 285.84 739.138 262 709.726 262c-18.868 0-36.071 9.426-46.06 25.504Z",
fill: "#FFF",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const NearCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-near-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
NearCircleFilled.displayName = 'NearCircleFilled';