UNPKG

@progress/kendo-react-grid

Version:

React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package

29 lines (28 loc) 855 B
/** * @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 i from "react"; import { Toolbar as s } from "@progress/kendo-react-buttons"; const c = (o) => { const { ariaLabel: r, _ariaControls: a, children: e, overflow: l = "scroll", ...t } = o; return /* @__PURE__ */ i.createElement( s, { className: "k-grid-toolbar", role: "toolbar", ariaLabel: r, _ariaControls: a, overflow: l, ...t }, e ); }; c.displayName = "KendoReactGridToolbar"; export { c as GridToolbar };