@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) • 870 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 column](https://www.telerik.com/kendo-react-ui/components/layout/gridlayout).
*/
export interface GridLayoutColumnProps {
/**
* Specifies the width of the GridLayout column ([see example](https://www.telerik.com/kendo-react-ui/components/layout/gridlayout#kendoreact-gridlayout-overview)).
*
* Example:
* ```jsx
* <GridLayout cols={[{ width: '200px' }]} />
* ```
*/
width?: number | string;
}