@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
20 lines (19 loc) • 762 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { classNames as s } from "@progress/kendo-react-common";
import * as n from "react";
const r = n.forwardRef(
(a, t) => {
const { children: o, ...e } = a;
return /* @__PURE__ */ n.createElement("div", { ref: t, ...e, className: s("k-expander-content", e.className) }, o);
}
);
r.displayName = "KendoReactExpansionPanelContent";
export {
r as ExpansionPanelContent
};