@ant-design/web3-icons
Version:
A collection of Web3 icons.
41 lines • 2.32 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__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("path", {
d: "M14.2 12.3h-.1c-1.8 0-3.3 1.5-3.3 3.4v3.7l3.3-2.5 3.3 2.5v-3.7c.1-1.9-1.4-3.4-3.2-3.4z",
fill: "#ff4339"
}), /*#__PURE__*/_jsx("path", {
d: "M0 0v27.4l8.5-6.3v-7.2L7 12.6l7.2-5.5 7.2 5.5-1.6 1.2V21l8.5 6.3V0H0z",
fill: "#ff4339"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 28.4 27.4",
xmlSpace: "preserve",
enableBackground: "new 0 0 28.4 27.4"
};
/** */
export const BondColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-bond-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BondColorful.displayName = 'BondColorful';