reactstrap
Version:
React Bootstrap components
22 lines (18 loc) • 525 B
TypeScript
import * as React from 'react';
import { CSSModule } from './utils';
type Omit<T, K> = Pick<T, Exclude<keyof T, K>>;
export interface RowProps
extends Omit<React.HTMLAttributes<HTMLElement>, 'form'> {
[key: string]: any;
cssModule?: CSSModule;
tag?: React.ElementType;
noGutters?: boolean;
xs?: number | string;
sm?: number | string;
md?: number | string;
lg?: number | string;
xl?: number | string;
xxl?: number | string;
}
declare class Row extends React.Component<RowProps> {}
export default Row;