@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
29 lines (27 loc) • 1.4 kB
JavaScript
/**
* Copyright IBM Corp. 2016, 2023
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
*
* Code generated by @carbon/icon-build-helpers. DO NOT EDIT.
*/
import Icon from "./Icon.js";
import { t as iconPropTypes } from "./iconPropTypes-B1cP964Y.js";
import React from "react";
import { jsx } from "react/jsx-runtime";
//#region virtual:ChartMaximum.js
const ChartMaximum = React.forwardRef(function ChartMaximum({ children, size = 16, ...rest }, ref) {
return React.createElement(Icon, {
width: size,
height: size,
ref,
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 32 32",
fill: "currentColor",
...rest
}, /* @__PURE__ */ jsx("path", { d: "M8 6H10V8H8z" }), /* @__PURE__ */ jsx("path", { d: "M12 6H14V8H12z" }), /* @__PURE__ */ jsx("path", { d: "M20 6H22V8H20z" }), /* @__PURE__ */ jsx("path", { d: "M24 6H26V8H24z" }), /* @__PURE__ */ jsx("path", { d: "M28 6H30V8H28z" }), /* @__PURE__ */ jsx("path", { d: "M27.989,28l-.0271-.1631C26.5105,19.0742,24.0662,9.0894,18,8.0889V6H16V8.085c-6.084.978-8.533,10.9775-9.9863,19.7519L5.9866,28H4V8H6V6H4V2H2V28a2,2,0,0,0,2,2H30V28ZM8.0151,28c2.024-12.1084,4.959-18,8.9727-18s6.9487,5.8916,8.9726,18Z" }), children);
});
if (process.env.NODE_ENV !== "production") ChartMaximum.propTypes = iconPropTypes;
//#endregion
export { ChartMaximum as default };