UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

44 lines (41 loc) 988 B
/** * * Row component is a helper component used to create grouping structures in DataTable. * * [Live Demo](https://www.primereact.org/datatable/) * * @module row * */ import * as React from 'react'; /** * Defines valid properties in Row component. * @group Properties */ export interface RowProps { /** * Inline style of the element. */ style?: React.CSSProperties | undefined; /** * Style class of the row. */ className?: string | undefined; /** * Used to get the child elements of the component. * @readonly */ children?: React.ReactNode | undefined; } /** * **PrimeReact - Row** * * _Row component is a helper component used to create grouping structures in DataTable._ * * [Live Demo](https://www.primereact.org/datatable/) * --- --- * ![PrimeReact](https://primefaces.org/cdn/primereact/images/logo-100.png) * * @group Component */ export declare class Row extends React.Component<RowProps, any> {}