rsuite
Version:
A suite of react components
11 lines (10 loc) • 340 B
TypeScript
import type { WithAsProps, RsRefForwardingComponent } from '../internals/types';
export interface RowProps extends WithAsProps {
gutter?: number;
}
/**
* The `Row` component is used for layout and grids.
* @see https://rsuitejs.com/components/grid
*/
declare const Row: RsRefForwardingComponent<'div', RowProps>;
export default Row;