Dashboard sipadu mbip
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

FormCheckInput.d.ts 430B

123456789101112131415161718
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface FormCheckInputProps {
  4. id?: string;
  5. type?: 'checkbox' | 'radio';
  6. isStatic?: boolean;
  7. isValid?: boolean;
  8. isInvalid?: boolean;
  9. innerRef?: React.LegacyRef<this>;
  10. }
  11. declare class FormCheckInput<
  12. As extends React.ElementType = 'input'
  13. > extends BsPrefixComponent<As, FormCheckInputProps> {}
  14. export default FormCheckInput;