Dashboard sipadu mbip
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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;