UNPKG

@types/react-bootstrap

Version:
12 lines (10 loc) 328 B
import * as React from "react"; import { Sizes } from "react-bootstrap"; declare namespace Label { export interface LabelProps extends React.HTMLProps<Label> { bsSize?: Sizes | undefined; bsStyle?: string | undefined; } } declare class Label extends React.Component<Label.LabelProps> {} export = Label;