UNPKG

ontime-components

Version:
18 lines (17 loc) 483 B
import { PureComponent } from 'react'; import { IProps } from '../../libs/interfaces'; interface IRowProps extends IProps { sizes?: number[]; children?: any[]; } interface IRowDefProps { sizes: number[]; children: any[]; } declare class Row extends PureComponent<IRowProps & IRowDefProps> { static defaultProps: IRowDefProps; static maxColumns: number; constructor(props: IRowProps & IRowDefProps); render(): JSX.Element; } export { Row, IRowProps };