@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 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: "M227.64 47.53a57.36 57.36 0 0 0-20.55-34.84A56.67 56.67 0 0 0 171.31 0H56.16c-20 .23-39 11.82-48.7 29.24C2 38.62 0 49.13 0 59.85v104.88c-.07 8.13.29 15.94 2.83 23.74A58 58 0 0 0 42 226.26c-5.51-4.39-7.95-10.5-9.74-17.11-3.71-14.5-4-29.56-3.4-44.42-.06-35 0-69.93 0-104.88.05-6 .5-11.67 3.58-17a27.31 27.31 0 0 1 23.79-14h109.45c5.51 0 10.52-.4 15.78 1.59A27.2 27.2 0 0 1 199 50.14c1.08 5.29.79 11.16.81 16.55v102.6c0 5-.56 10-2.73 14.57-4.47 9.35-14.14 15.84-24.61 15.65H85.84c-.06-9.41 0-18.82 0-28.24h70.69c5.07.28 10.91-2.29 13.24-7a15.68 15.68 0 0 0 1.6-7.58V71.16a13.21 13.21 0 0 0-7-12.5c-3.9-2.26-8.07-1.68-12.42-1.76-27 .07-54 0-80.94.05a13.87 13.87 0 0 0-13.93 14.29c-.11 41 0 82.15 0 123.14.21 8.14-.05 15.85 4.67 22.9 3.58 5.82 9.63 8.78 16.14 10.07 7.7 1.24 15.06.94 22.79 1h70.68A57.17 57.17 0 0 0 204.07 218c10.32-7.61 18.32-18.09 22-30.45 2.54-8.36 2.5-16.48 2.54-25.11v-98a114.68 114.68 0 0 0-.97-16.91Zm-85.28 95H85.83V85.77h56.53Z",
fill: "#45d492"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 228.62 228.33"
};
/** */
export const PartColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-part-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PartColorful.displayName = 'PartColorful';