@ant-design/web3-icons
Version:
A collection of Web3 icons.
45 lines • 6.14 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";
import { jsxs as _jsxs } from "react/jsx-runtime";
var SVGComponent = function SVGComponent(props) {
return /*#__PURE__*/_jsx("svg", {
...props,
children: /*#__PURE__*/_jsxs("g", {
fill: "none",
fillRule: "evenodd",
children: [/*#__PURE__*/_jsx("circle", {
cx: "16",
cy: "16",
r: "16",
fill: "#2B1544"
}), /*#__PURE__*/_jsx("path", {
fill: "#FFF",
fillRule: "nonzero",
d: "M24.99 12.502v6.656c0 .296.015.598-.052.889a3.47 3.47 0 0 1-1.002 1.76c-.236.227-.53.374-.811.54-1.907 1.11-3.808 2.223-5.714 3.335-.582.311-1.27.364-1.916.284a2.609 2.609 0 0 1-.96-.314c-2.007-1.17-4.014-2.343-6.02-3.512-.49-.273-.856-.723-1.125-1.207-.22-.42-.381-.882-.381-1.363v-7.186c.037-.7.347-1.363.788-1.892a2.47 2.47 0 0 1 .639-.564c1.865-1.086 3.73-2.176 5.594-3.266.307-.17.598-.378.93-.492a3.564 3.564 0 0 1 1.735-.098c.257.072.519.148.75.284 2.03 1.191 4.063 2.373 6.092 3.565.541.32.938.855 1.196 1.426.163.36.257.757.257 1.155zm-9.05-2.476a10.676 10.676 0 0 1-1.487 1.76c-.292.277-.573.576-.74.947-.134.262-.224.56-.186.86.045.404.333.76.707.904.38.152.81.118 1.188-.03a.393.393 0 0 1 .217-.03c-.074.474-.362.874-.59 1.283l.01.068c.206.22.423.428.628.644.052.049.1.117.172.14.239-.185.426-.428.646-.632.049-.056.15-.117.097-.204-.213-.4-.449-.805-.516-1.267.04-.094.153-.015.22.008.355.174.784.2 1.155.057.505-.193.819-.784.706-1.318-.086-.48-.34-.92-.684-1.256-.53-.545-1.039-1.127-1.401-1.801a.235.235 0 0 0-.142-.133zm-3.633 6.51c-.6.326-1.001.965-1.1 1.644-.137.953.42 1.949 1.283 2.339.546.235 1.18.23 1.73.015.284-.114.527-.3.736-.519.079-.084.194-.159.194-.288-.01-.129-.126-.2-.201-.288-.098-.087-.176-.2-.288-.269-.18-.079-.288.118-.404.216-.455.462-1.274.466-1.74.015a1.255 1.255 0 0 1-.378-1.12c.056-.383.284-.746.624-.928.22-.11.467-.17.71-.159.343.022.657.204.889.454.792.788 1.554 1.605 2.343 2.396.418.413.997.678 1.587.655.45.01.883-.17 1.249-.424.539-.375.867-1.026.9-1.684.072-1.042-.683-2.093-1.7-2.294-.649-.132-1.382.004-1.882.466-.356.324-.68.688-1.032 1.021-.363-.299-.65-.677-1.005-.983a1.75 1.75 0 0 0-.52-.341c-.036-.023-.048-.034-.096-.053a2.103 2.103 0 0 0-1.899.129zm5.037 1.052c.259-.258.625-.409.99-.379.396.011.78.223.99.564.328.5.232 1.219-.19 1.631-.434.421-1.178.474-1.645.076-.347-.295-.638-.647-.97-.957-.004-.022-.008-.064-.012-.083.277-.288.56-.564.837-.852z"
})]
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const EdgCircleColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-edg-circle-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
EdgCircleColorful.displayName = 'EdgCircleColorful';