mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
|
||
|
export interface FormGroupProps extends React.HTMLAttributes<HTMLDivElement> {
|
||
|
[key: string]: any;
|
||
|
row?: boolean;
|
||
|
check?: boolean;
|
||
|
inline?: boolean;
|
||
|
disabled?: boolean;
|
||
|
tag?: React.ElementType;
|
||
|
cssModule?: CSSModule;
|
||
|
}
|
||
|
|
||
|
declare class FormGroup extends React.Component<FormGroupProps> {}
|
||
|
export default FormGroup;
|