Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425
  1. import * as React from 'react';
  2. import { ColProps } from './Col';
  3. import { BsPrefixComponent } from './helpers';
  4. interface FormLabelBaseProps {
  5. htmlFor?: string;
  6. innerRef?: React.LegacyRef<this>;
  7. srOnly?: boolean;
  8. }
  9. export interface FormLabelOwnProps extends FormLabelBaseProps {
  10. column?: false;
  11. }
  12. export interface FormLabelWithColProps extends FormLabelBaseProps, ColProps {
  13. column: true;
  14. }
  15. export type FormLabelProps = FormLabelWithColProps | FormLabelOwnProps;
  16. declare class FormLabel extends BsPrefixComponent<'label', FormLabelProps> {}
  17. export default FormLabel;