@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 2.57 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", {
d: "m512 112-73.44 42.202-200.12 115.596L165 312v400l73.44 42.202 201.957 115.596L513.836 912l73.44-42.202L785.56 754.202 859 712V312l-73.44-42.202-200.12-115.596L512 112ZM311.878 627.596V396.404L512 280.807l200.122 115.597v231.192L512 743.193 311.878 627.596Z",
fill: "#555",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const ChainlinkFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-chainlink-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ChainlinkFilled.displayName = 'ChainlinkFilled';