UNPKG

@progress/kendo-react-listview

Version:

React ListView enables you to display a custom layout of data items. KendoReact ListView package

17 lines (16 loc) 701 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 { classNames as m } from "@progress/kendo-react-common"; const l = (e) => { const { children: t, style: s, className: r } = e; return /* @__PURE__ */ i.createElement("div", { role: "listitem", style: s, className: m("k-listview-item", r) }, t); }; export { l as ListViewItemWrapper };