@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 3.76 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: "M33.3 0H7.4C3.3 0 0 3.3 0 7.3v25.4c0 4 3.3 7.3 7.4 7.3h25.9c4.1 0 7.4-3.3 7.4-7.3V7.3c0-4-3.3-7.3-7.4-7.3zM27 10c3 0 5.5 2.4 5.5 5.4 0 .9-.2 1.8-.6 2.6-.7-.5-1.5-1-2.3-1.3.2-.4.3-.9.3-1.3 0-1.5-1.3-2.8-2.8-2.8-1.6 0-2.8 1.3-2.8 2.8 0 .5.1.9.3 1.3-.8.3-1.6.7-2.3 1.3-.5-.8-.6-1.7-.6-2.6-.1-3 2.3-5.4 5.3-5.4zM13.7 30c-3 0-5.5-2.4-5.5-5.4h2.6c0 1.5 1.3 2.8 2.8 2.8s2.8-1.3 2.8-2.8H19c.2 3-2.3 5.4-5.3 5.4zm0-7.5c-3.5 0-6.3-2.8-6.3-6.2 0-3.4 2.8-6.3 6.3-6.3s6.4 2.8 6.4 6.3c0 3.4-2.9 6.2-6.4 6.2zM27 30c-3.5 0-6.4-2.8-6.4-6.2 0-3.5 2.8-6.3 6.4-6.3 3.5 0 6.3 2.8 6.3 6.3.1 3.4-2.8 6.2-6.3 6.2zm3.8-6.3c0 2.1-1.7 3.7-3.8 3.7s-3.8-1.7-3.8-3.7c0-2.1 1.7-3.7 3.8-3.7 2.1.1 3.8 1.7 3.8 3.7zm-13.4-7.4c0 2.1-1.7 3.7-3.8 3.7-2.1 0-3.8-1.7-3.8-3.7 0-2.1 1.7-3.7 3.8-3.7 2.2 0 3.8 1.6 3.8 3.7z",
fill: "#d9b432"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 40.7 40",
xmlSpace: "preserve",
enableBackground: "new 0 0 40.7 40"
};
/** */
export const C98Colorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-c98-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
C98Colorful.displayName = 'C98Colorful';