@ant-design/web3-icons
Version:
A collection of Web3 icons.
40 lines • 3.74 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: "m51.2 4.2-2.7 16.2-9.6-11.3 12.3-4.9zm-2.7 23.1 2.4 8.9-18.4 5.1 16-14zm-40-4.4L18.4 10h17.1l10.9 12.9H8.5zM45.2 26 27.4 41.6 9.2 26h36zM15.1 9.1 6.3 20.6 3.6 4.2l11.5 4.9zm7 32.2L3.5 36.2 6 27.5l16.1 13.8zm3.4 4.2L22 49.3c-3-2.8-6.2-5.3-9.7-7.5l13.2 3.7zm17-3.7c-3.5 2.2-6.7 4.7-9.7 7.5l-3.6-3.9 13.3-3.6zM55.2-.9 35.9 6.8h-18L-.5-.9l4.2 25.3-4 13.7 10.5 6.3c5 3 9.4 6.7 13.2 11l4.1 4.7 4.3-4.9c3.7-4.2 8-7.8 12.7-10.8L54.7 38 51 24.4 55.2-.9z",
transform: "translate(.491 .938)",
fillRule: "evenodd",
clipRule: "evenodd",
fill: "#131d27"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 55.7 61",
xmlSpace: "preserve",
enableBackground: "new 0 0 55.7 61"
};
/** */
export const FoxColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-fox-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
FoxColorful.displayName = 'FoxColorful';