@ant-design/web3-icons
Version:
A collection of Web3 icons.
49 lines • 9.32 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("path", {
d: "M890.42 647.878V133.58c-.679-43.142-34.988-77.79-78.13-77.79H275.572C159.736 57.487 66.66 152.262 66.66 268.438c0 39.065 10.53 72.694 26.496 102.248 13.588 24.458 34.988 47.557 56.05 64.882 6.114 4.755 3.057 2.717 21.4 13.927 25.138 15.286 54.012 23.1 54.012 23.1l-.34 307.763c.68 14.607 2.038 28.535 6.115 41.783 11.89 43.48 42.122 76.77 82.885 92.736 16.985 6.794 36.348 11.21 57.07 11.55l428.694 1.359c85.264 0 154.562-69.298 154.562-154.901.34-50.954-25.138-96.474-63.184-125.008z",
fill: "#FFEEDA"
}), /*#__PURE__*/_jsx("path", {
d: "M900.95 776.623c-1.698 54.69-46.877 98.85-102.247 98.85l-294.856-1.018c23.44-27.176 37.706-62.504 37.706-101.23 0-60.465-36.007-102.248-36.007-102.248h293.496c56.39 0 102.249 45.86 102.249 102.249l-.34 3.397z",
fill: "#EBC28E"
}), /*#__PURE__*/_jsx("path", {
d: "M177.4 392.088c-33.97-32.271-57.748-73.714-57.748-123.31v-5.095c2.718-84.245 72.015-152.184 156.26-154.561H812.63c13.928.679 25.138 10.53 25.138 24.797v454.173c12.229 2.038 18.343 3.736 30.233 8.152 9.511 3.397 22.42 10.87 22.42 10.87V133.92c-.68-43.141-34.99-77.79-78.13-77.79H275.571C159.736 57.828 66.66 152.603 66.66 268.78c0 67.599 30.912 125.347 81.187 165.77 3.397 2.718 6.794 6.455 15.626 6.455 15.626 0 26.836-12.569 26.156-26.157 0-11.55-5.095-15.626-12.229-22.76z",
fill: "#101010"
}), /*#__PURE__*/_jsx("path", {
d: "M798.703 617.985H377.82c-28.194.34-50.954 23.1-50.954 51.294v60.466c.68 27.855 24.458 51.633 52.993 51.633h31.252v-51.633h-31.592v-59.107h16.985c53.332 0 92.397 49.255 92.397 102.248 0 46.878-42.802 106.664-114.138 101.908-63.183-4.076-97.492-60.465-97.492-101.908v-512.94c0-23.1-19.023-42.122-42.123-42.122h-42.122v52.653h31.252v502.749c-1.698 102.248 72.695 153.542 150.485 153.542l424.28 1.359c85.263 0 154.56-69.298 154.56-154.901.34-85.604-69.297-155.241-154.9-155.241zM900.95 776.623c-1.699 54.69-46.878 98.85-102.248 98.85l-294.856-1.018c23.44-27.176 37.706-62.504 37.706-101.23 0-60.465-36.007-102.248-36.007-102.248h293.496c56.39 0 102.249 45.86 102.249 102.249l-.34 3.397zM685.245 279.988H367.969v-52.653h317.276c14.267 0 26.156 11.55 26.156 26.157.34 14.607-11.21 26.496-26.156 26.496z",
fill: "#101010"
}), /*#__PURE__*/_jsx("path", {
d: "M685.245 526.947H367.969v-52.313h317.276c14.267 0 26.156 11.55 26.156 26.156.34 14.267-11.21 26.157-26.156 26.157zm56.05-123.65H367.968v-52.652h372.986c14.267 0 26.156 11.55 26.156 26.156.68 14.607-11.21 26.497-25.817 26.497z",
fill: "#101010"
})]
});
};
SVGComponent.defaultProps = {
className: "icon",
viewBox: "0 0 1024 1024",
xmlns: "http://www.w3.org/2000/svg"
};
/** */
export const ScrollColorful = /*#__PURE__*/React.forwardRef((props, ref) => {
const {
getPrefixCls
} = React.useContext(ConfigProvider.ConfigContext);
const prefixCls = getPrefixCls('web3-icon-scroll-colorful');
return /*#__PURE__*/_jsx(AntdIcon, {
...props,
className: classnames(prefixCls, props.className),
ref: ref,
component: eraseDefaultProps(SVGComponent)
});
});
ScrollColorful.displayName = 'ScrollColorful';