Gazebo_simulation-Frontend/node_modules/react-bootstrap/FormLabel.d.ts
2020-12-21 10:29:31 -05:00

26 lines
586 B
TypeScript

import * as React from 'react';
import { ColProps } from './Col';
import { BsPrefixComponent } from './helpers';
interface FormLabelBaseProps {
htmlFor?: string;
innerRef?: React.LegacyRef<this>;
srOnly?: boolean;
}
export interface FormLabelOwnProps extends FormLabelBaseProps {
column?: false;
}
export interface FormLabelWithColProps extends FormLabelBaseProps, ColProps {
column: true;
}
export type FormLabelProps = FormLabelWithColProps | FormLabelOwnProps;
declare class FormLabel extends BsPrefixComponent<'label', FormLabelProps> {}
export default FormLabel;