@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
23 lines (22 loc) • 808 B
JavaScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import * as o from "react";
import n from "prop-types";
import { classNames as s } from "@progress/kendo-react-common";
const a = "ActionSheetContent", e = (t) => /* @__PURE__ */ o.createElement("div", { className: s("k-actionsheet-content", t.className) }, t.children);
e.propTypes = {
className: n.string
};
e.displayName = a;
e.propTypes = {
children: n.any
};
export {
e as ActionSheetContent,
a as contentDisplayName
};