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;