@ant-design/web3-icons
Version:
A collection of Web3 icons.
37 lines • 5.45 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: "M12.5 17.9c1 0 2-.3 3-.8 2.8-1.6 3.8-5.3 2.2-8.1-1.6-2.8-5.3-3.8-8.1-2.2-1.4.8-2.3 2.1-2.8 3.6-.4 1.5-.2 3.1.6 4.5 1 2 3 3 5.1 3zM8.6 11c.3-1 .9-1.9 1.9-2.4.6-.4 1.3-.5 2-.5 1.4 0 2.7.7 3.5 2 1.1 1.9.4 4.4-1.5 5.5s-4.4.4-5.5-1.5c-.5-1-.7-2.1-.4-3.1zM19.1 8.1c.8 1.3 2 2.3 3.5 2.7.5.1 1 .2 1.5.2.3 0 .5 0 .8-.1-.1-.6-.2-1.2-.3-1.9-.5.1-1 0-1.5-.1-1-.3-1.8-.9-2.4-1.8-.5-.9-.7-1.9-.4-2.9.1-.5.4-.9.7-1.3-.5-.4-.9-.8-1.5-1.2-.5.6-.8 1.3-1 2-.4 1.6-.2 3.1.6 4.4zM22.6 13.2c-1.5.4-2.7 1.3-3.5 2.7-.8 1.3-1 2.9-.6 4.4.2.8.6 1.4 1 2l1.5-1.2c-.3-.4-.5-.8-.7-1.3-.3-1-.1-2 .4-2.9s1.4-1.5 2.4-1.8c.5-.1 1-.2 1.5-.1.1-.6.2-1.2.3-1.9-.8-.2-1.5-.1-2.3.1zM12.4 21.6c1.6 0 3 1 3.6 2.4.6-.2 1.2-.4 1.8-.7-.9-2.1-2.9-3.6-5.3-3.6S8 21.2 7.2 23.3c.6.3 1.2.5 1.8.7.5-1.4 1.8-2.4 3.4-2.4zM12.4 4.3c2.4 0 4.5-1.5 5.3-3.6-.6-.3-1.1-.5-1.8-.7-.6 1.4-2 2.4-3.6 2.4s-3-1-3.6-2.4c-.6.2-1.2.4-1.8.7C8 2.8 10 4.3 12.4 4.3zM5.8 15.9c-.8-1.3-2-2.3-3.5-2.7-.8-.2-1.5-.2-2.3-.1.1.6.2 1.2.3 1.9h.5c.3 0 .7 0 1 .1 1 .3 1.8.9 2.4 1.8.8 1.4.6 3.1-.3 4.3.5.4.9.8 1.5 1.2 1.3-1.9 1.6-4.5.4-6.5zM2.3 10.8c1.5-.4 2.7-1.3 3.5-2.7.8-1.3 1-2.9.6-4.4-.2-.8-.6-1.4-1-2-.6.4-1.1.8-1.5 1.2.3.4.5.8.7 1.3.3 1 .1 2-.4 2.9S2.8 8.6 1.8 8.9c-.5.1-1 .2-1.5.1-.1.6-.2 1.2-.3 1.9.3 0 .5.1.8.1.5 0 1 0 1.5-.2z",
fill: "#1a1a1d"
})
});
};
SVGComponent.defaultProps = {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24.9 24",
xmlSpace: "preserve",
enableBackground: "new 0 0 24.9 24"
};
/** */
export const BtrstColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-btrst-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
BtrstColorful.displayName = 'BtrstColorful';