@ant-design/web3-icons
Version:
A collection of Web3 icons.
40 lines • 4.16 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__*/_jsxs("svg", {
...props,
children: [/*#__PURE__*/_jsx("circle", {
cx: "512",
cy: "512",
r: "512"
}), /*#__PURE__*/_jsx("path", {
fill: "#FFF",
d: "m239 368.334 272.877-89.09V896C316.963 813.76 239 656.146 239 567.068zm545.767 0-272.877-89.09V896c194.914-82.24 272.877-239.854 272.877-328.932zM346.45 131.056h38.076v21.33c12.483-19.174 26.838-21.33 47.86-21.33v37.706h-9.574c-25.187 0-37.25 11.854-37.25 35.328v40.072h-39.124V131.056zM559.466 244.15h-39.123v-10.782c-8.54 9.92-20.184 14.22-34.54 14.22-27.256 0-42.66-16.155-42.66-45.888v-70.656h39.124v61.833c0 13.998 6.863 22.18 18.508 22.18s19.568-7.972 19.568-21.54v-62.473h39.123zm9.562-34.909h36.635c1.675 8.182 7.282 11.62 20.8 11.62 11.028 0 17.485-2.575 17.485-7.32 0-3.672-3.13-6.037-12.064-7.972l-29.549-6.679c-19.764-4.51-29.758-15.933-29.758-34.256 0-24.14 17.683-36.634 52.013-36.634s51.186 12.174 54.107 38.248h-36.413c-.616-6.888-7.701-11.102-19.346-11.102-9.352 0-15.39 3.007-15.39 7.541 0 3.87 3.943 6.888 11.866 8.848l31.003 7.541c20.381 4.941 30.177 15.292 30.177 32.1 0 23.276-20.183 37.065-54.501 37.065s-57.015-14.86-57.015-39h-.05m215.739-43.005v-35.18h-96.545v35.192h28.81v77.902h38.913v-77.926h28.822zm-449.197 0v-35.18h-96.545v35.192h28.81v77.902h38.913v-77.926h28.81z"
})]
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 1024 1024"
};
/** */
export const TrustWalletCircleFilled = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-trust-wallet-circle-filled');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
TrustWalletCircleFilled.displayName = 'TrustWalletCircleFilled';