@progress/kendo-react-grid
Version:
React Data Grid (Table) provides 100+ ready-to-use data grid features. KendoReact Grid package
19 lines (18 loc) • 944 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 e from "react";
import { ReorderRowIcon as l } from "../../components/icons/reorder-row-svg.mjs";
import { GridRowReorderCellServerContainer as n } from "./GridRowReorderCellServerContainer.mjs";
import { getRowReorderCellTdProps as c } from "./utils.mjs";
const p = (o) => {
const { cellProps: r } = o, { tdProps: t } = c(r);
return /* @__PURE__ */ e.createElement(n, { cellProps: r }, /* @__PURE__ */ e.createElement("td", { ...t, style: { touchAction: "none" } }, /* @__PURE__ */ e.createElement(l, null)));
};
export {
p as GridRowReorderCellServer
};