@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 3.6 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: "M193.6 6.5v56c0 18.1-14.7 32.8-32.9 32.8h-.5c-9.1-.1-17.3 0-17.3 0-1.6 0-3.3-.2-4.8 0-10.2 1.1-19.1 5.7-26.6 13.9-.2.2-.4.5-.6.7-6 7.8-9.3 17.8-9.3 28.7v.5c0 7 1.4 13.6 4 19.6 2.6 5.9 1.3 12.9-3.7 17-4.9 4.1-10.7 8.9-14.6 12-11.3-12.9-18-29.7-18-48.1v-.5c0-40 32-73.3 75.5-73.3h15.7V.4C157.1.2 153.6 0 150 0 67.2 0 0 67.2 0 150c0 67.7 44.8 124.9 106.4 143.5V238c0-18.3 14.9-33.2 33.2-33.2h.1c9.1.1 17.3 0 17.3 0 1.6 0 3.3.2 4.8 0 10.2-1.1 19.1-5.7 26.6-13.9.2-.2.4-.5.6-.7 6-7.8 9.3-17.9 9.3-28.7v-.5c0-5.4-2.3-12.7-4.6-18.6-2.5-6.5-.6-14.1 4.8-18.6 4.6-3.9 9.4-7.7 14.1-11.5 11.3 12.9 18 29.7 18 48.1v.5c0 40-32 73.3-75.5 73.3h-15.7v65.3c3.5.2 7.1.4 10.6.4 82.8 0 150-67.2 150-150 0-67.6-44.8-124.7-106.4-143.4z",
fill: "#1d8aed"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 300 300",
xmlSpace: "preserve",
enableBackground: "new 0 0 300 300"
};
/** */
export const PoktCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-pokt-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PoktCircleColorful.displayName = 'PoktCircleColorful';