@progress/kendo-react-layout
Version:
React Layout components enable you to create a perceptive and intuitive layout of web projects. KendoReact Layout package
22 lines (21 loc) • 864 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Represents the props of the [KendoReact GridLayout row](https://www.telerik.com/kendo-react-ui/components/layout/gridlayout).
*/
export interface GridLayoutRowProps {
/**
* Specifies the height of the GridLayout row ([see example](https://www.telerik.com/kendo-react-ui/components/layout/gridlayout#kendoreact-gridlayout-overview)).
*
* Example:
* ```jsx
* <GridLayout rows={[{ height: '100px' }]} />
* ```
*/
height?: number | string;
}