Dashboard sipadu mbip
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

FormCheckLabel.d.ts 305B

123456789101112131415
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface FormCheckLabelProps {
  4. htmlFor?: string;
  5. innerRef?: React.LegacyRef<this>;
  6. }
  7. declare class FormCheckLabel extends BsPrefixComponent<
  8. 'label',
  9. FormCheckLabelProps
  10. > {}
  11. export default FormCheckLabel;