mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
22 lines
518 B
TypeScript
22 lines
518 B
TypeScript
import * as React from 'react';
|
|
import { CSSModule } from './index';
|
|
|
|
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;
|
|
form?: boolean;
|
|
xs?: number | string;
|
|
sm?: number | string;
|
|
md?: number | string;
|
|
lg?: number | string;
|
|
xl?: number | string;
|
|
}
|
|
|
|
declare class Row extends React.Component<RowProps> {}
|
|
export default Row;
|