UNPKG

primereact

Version:

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

10 lines (7 loc) 220 B
import * as React from 'react'; export interface RowProps { style?: React.CSSProperties; className?: string; children?: React.ReactNode; } export declare class Row extends React.Component<RowProps, any> {}