Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

29 Zeilen
715 B

  1. import * as React from 'react';
  2. import FormCheckInput from './FormCheckInput';
  3. import FormCheckLabel from './FormCheckLabel';
  4. import { BsPrefixRefForwardingComponent } from './helpers';
  5. export interface FormCheckProps {
  6. bsCustomPrefix?: string;
  7. id?: string;
  8. inline?: boolean;
  9. disabled?: boolean;
  10. title?: string;
  11. label?: React.ReactNode;
  12. custom?: boolean;
  13. type?: 'checkbox' | 'radio' | 'switch';
  14. isValid?: boolean;
  15. isInvalid?: boolean;
  16. feedback?: React.ReactNode;
  17. }
  18. declare interface FormCheck
  19. extends BsPrefixRefForwardingComponent<'input', FormCheckProps> {
  20. Input: typeof FormCheckInput;
  21. Label: typeof FormCheckLabel;
  22. }
  23. declare const FormCheck: FormCheck;
  24. export default FormCheck;