DefinitelyTyped/reactstrap/lib/Label.d.ts
Marco Falkenberg 8934f1102f Add typings for reactstrap (#15357)
* Add typings for reactstrap

* Make lint happy

* Do not „double-reference“ to React types
2017-03-24 08:36:17 -07:00

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;