@carbon/icons-react
Version:
React components for icons in digital and software products using the Carbon Design System
28 lines (27 loc) • 1.07 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-BElKp6Sn.js";
import React from "react";
import { jsx } from "react/jsx-runtime";
//#region virtual:KeyValues.js
const KeyValues = /* @__PURE__ */ React.forwardRef(function KeyValues({ 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,7h-4v-2h4v2ZM25,5h-15v2h15v-2ZM10,10h-6v2h6v-2ZM24,10h-12v2h12v-2ZM7,15h-3v2h3v-2ZM27,15H9v2h18v-2ZM11,20h-7v2h7v-2ZM25,20h-12v2h12v-2ZM8,25h-4v2h4v-2ZM28,25H10v2h18v-2Z" }), children);
});
if (process.env.NODE_ENV !== "production") KeyValues.propTypes = iconPropTypes;
//#endregion
export { KeyValues as default };