@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 5.42 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: "M717.744 375.17c-14.621-8.357-33.42-8.357-50.13 0l-116.972 68.937-79.373 43.87-114.883 68.937c-14.621 8.356-33.42 8.356-50.13 0l-89.817-54.315c-14.622-8.356-25.066-25.068-25.066-43.869V354.279c0-16.712 8.355-33.424 25.066-43.87l89.817-52.225c14.621-8.356 33.42-8.356 50.13 0l89.818 54.315c14.621 8.356 25.065 25.068 25.065 43.869v68.938l79.373-45.959V308.32c0-16.712-8.355-33.424-25.065-43.869l-167.102-98.184c-14.621-8.356-33.42-8.356-50.13 0L137.065 266.54C120.355 274.896 112 291.608 112 308.32v196.368c0 16.713 8.355 33.425 25.065 43.87l169.19 98.184c14.622 8.356 33.421 8.356 50.131 0l114.883-66.849 79.373-45.958 114.883-66.849c14.621-8.356 33.42-8.356 50.13 0l89.818 52.226c14.621 8.356 25.065 25.068 25.065 43.869v104.451c0 16.712-8.355 33.424-25.065 43.87l-87.729 52.225c-14.621 8.356-33.42 8.356-50.13 0l-89.818-52.226c-14.621-8.356-25.065-25.068-25.065-43.869v-66.849l-79.373 45.959v68.938c0 16.712 8.355 33.424 25.065 43.869l169.19 98.184c14.622 8.356 33.42 8.356 50.131 0l169.19-98.184c14.622-8.356 25.066-25.068 25.066-43.87V517.224c0-16.713-8.355-33.425-25.065-43.87l-169.19-98.184Z",
fill: "#555",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const MaticFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-matic-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
MaticFilled.displayName = 'MaticFilled';