@ant-design/web3-icons
Version:
A collection of Web3 icons.
35 lines • 2.49 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: "M256 128A128 128 0 1 1 128 0a128 128 0 0 1 128 128Zm-75.87-66 1.87-9a3.14 3.14 0 0 0-3.15-4h-6a5.21 5.21 0 0 0-4.85 4l-1.91 9h-14l1.91-9a3.14 3.14 0 0 0-3.15-4h-6a5.21 5.21 0 0 0-4.85 4l-1.91 9H60L40 86h132a12 12 0 0 1 12 12v12a12 12 0 0 1-12 12h-61.62l5.1-24h-32L60.1 208h32l13.18-62h15l-1.91 9a3.14 3.14 0 0 0 3.15 4h6a5.21 5.21 0 0 0 4.85-4l1.91-9h14l-1.91 9a3.14 3.14 0 0 0 3.15 4h6a5.21 5.21 0 0 0 4.85-4l1.91-9H192a24 24 0 0 0 24-24V86a24 24 0 0 0-24-24h-11.87Z",
fill: "#f7931e"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 256 256"
};
/** */
export const PascCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-pasc-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
PascCircleColorful.displayName = 'PascCircleColorful';