rsuite
Version:
A suite of react components
19 lines (12 loc) • 416 B
TypeScript
import * as React from 'react';
import { StandardProps } from '../@types/common';
export interface GridProps extends StandardProps {
/** Sets id for controlled component */
controlId?: string;
/** Fluid layout */
fluid?: boolean;
/** You can use a custom element for this component */
componentClass?: React.ElementType;
}
declare const Grid: React.ComponentType<GridProps>;
export default Grid;