@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
34 lines (33 loc) • 1 kB
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 s from "react";
import { classNames as i, kendoThemeMaps as m } from "@progress/kendo-react-common";
const b = (o) => {
const { size: a, className: r, ariaLabel: e, ariaControls: l, children: t } = o;
return /* @__PURE__ */ s.createElement(
"div",
{
className: i(
"k-toolbar k-grid-toolbar k-toolbar-solid",
{
"k-toolbar-md": !a,
[`k-toolbar-${m.sizeMap[a] || a}`]: a
},
r
),
"aria-label": e,
"aria-controls": l,
role: "toolbar"
},
t
);
};
b.displayName = "KendoReactGridToolbar";
export {
b as GridToolbar
};