mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
20 lines
384 B
TypeScript
20 lines
384 B
TypeScript
import { ColumnProps } from './Col';
|
|
|
|
interface Props {
|
|
hidden?: boolean;
|
|
check?: boolean;
|
|
inline?: boolean;
|
|
disabled?: boolean;
|
|
size?: string;
|
|
for?: string;
|
|
tag?: string;
|
|
className?: string;
|
|
xs?: ColumnProps;
|
|
sm?: ColumnProps;
|
|
md?: ColumnProps;
|
|
lg?: ColumnProps;
|
|
xl?: ColumnProps;
|
|
}
|
|
|
|
declare var Label: React.StatelessComponent<Props>;
|
|
export default Label; |