@ant-design/web3-icons
Version:
A collection of Web3 icons.
47 lines • 3.13 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", {
transform: "translate(112 112)",
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
fill: "#555",
cx: "400",
cy: "400",
r: "400"
}), /*#__PURE__*/_jsx("path", {
d: "m400 100-55.026 31.651-149.948 86.698L140 250v300l55.026 31.651L346.35 668.35 401.376 700l55.026-31.651 148.572-86.698L660 550V250l-55.026-31.651-149.948-86.698L400 100ZM250.053 486.697V313.303L400 226.606l149.947 86.697v173.394L400 573.394l-149.947-86.697Z",
fill: "#FFF",
fillRule: "nonzero"
})]
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const ChainlinkCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-chainlink-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ChainlinkCircleFilled.displayName = 'ChainlinkCircleFilled';