@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 3.81 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: "m753.867 152.889-167.134 248c-11.558 16.889 10.668 37.333 26.67 23.111L777.87 280.889c4.445-3.556 10.668-.889 10.668 5.333v447.111c0 6.223-8 8.89-11.557 4.445L279.134 142.222C263.132 122.667 240.018 112 214.236 112h-17.78C150.228 112 112 150.222 112 197.333v629.334c0 47.11 38.228 85.333 85.345 85.333 29.338 0 56.897-15.111 72.9-40.889l167.133-248c11.558-16.889-10.668-37.333-26.67-23.111L246.241 742.222c-4.445 3.556-10.668.89-10.668-5.333V290.667c0-6.223 8-8.89 11.557-4.445l497.847 595.556C760.979 901.333 784.982 912 809.875 912h17.78C874.772 912 913 873.778 913 826.667V197.333c0-47.11-38.228-85.333-85.345-85.333-30.227 0-57.786 15.111-73.788 40.889Z",
fill: "#555",
fillRule: "nonzero"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const NearFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-near-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
NearFilled.displayName = 'NearFilled';