mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
28 lines
604 B
TypeScript
28 lines
604 B
TypeScript
|
import * as React from 'react';
|
||
|
import { CSSModule } from './index';
|
||
|
import { ColumnProps } from './Col';
|
||
|
|
||
|
export interface LabelProps
|
||
|
extends React.LabelHTMLAttributes<HTMLLabelElement> {
|
||
|
[key: string]: any;
|
||
|
hidden?: boolean;
|
||
|
check?: boolean;
|
||
|
size?: string;
|
||
|
inline?: boolean;
|
||
|
disabled?: boolean;
|
||
|
for?: string;
|
||
|
tag?: React.ElementType;
|
||
|
cssModule?: CSSModule;
|
||
|
xs?: ColumnProps;
|
||
|
sm?: ColumnProps;
|
||
|
md?: ColumnProps;
|
||
|
lg?: ColumnProps;
|
||
|
xl?: ColumnProps;
|
||
|
|
||
|
// custom widths
|
||
|
widths?: string[];
|
||
|
}
|
||
|
|
||
|
declare class Label extends React.Component<LabelProps> {}
|
||
|
export default Label;
|