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.

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;