@ant-design/web3-icons
Version:
A collection of Web3 icons.
36 lines • 5.62 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: "M1024 512c0 282.773-229.227 512-512 512C229.23 1024 0 794.773 0 512 0 229.23 229.23 0 512 0c282.773 0 512 229.23 512 512ZM366.914 715.75h-99.365c-20.88 0-31.193 0-37.482-4.022-6.792-4.404-10.942-11.699-11.445-19.75-.379-7.419 4.779-16.477 15.092-34.59L479.06 224.936c10.44-18.363 15.723-27.545 22.389-30.941a25.312 25.312 0 0 1 22.891 0c6.666 3.396 11.95 12.578 22.388 30.941l50.438 88.046.258.45c11.275 19.7 16.993 29.69 19.49 40.175a74.68 74.68 0 0 1 0 34.968c-2.517 10.565-8.176 20.628-19.622 40.626L468.418 657.011l-.334.584c-11.35 19.863-17.101 29.93-25.073 37.525a75.012 75.012 0 0 1-30.565 17.74c-10.44 2.89-22.137 2.89-45.532 2.89Zm250.93 0H760.22c21.006 0 31.573 0 37.866-4.145 6.79-4.405 11.064-11.829 11.446-19.873.361-7.179-4.684-15.886-14.569-32.945-.342-.58-.682-1.171-1.03-1.773l-71.318-122.005-.811-1.373c-10.022-16.948-15.08-25.506-21.578-28.813a25.04 25.04 0 0 0-22.765 0c-6.541 3.395-11.823 12.325-22.262 30.312L584.135 657.14l-.244.42c-10.403 17.958-15.602 26.931-15.227 34.294.503 8.052 4.653 15.47 11.445 19.874 6.164 4.022 16.73 4.022 37.735 4.022Z",
fill: "#E84142",
fillRule: "evenodd"
})
});
};
SVGComponent.defaultProps = {
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const AvalancheCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-avalanche-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
AvalancheCircleColorful.displayName = 'AvalancheCircleColorful';