Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

3 лет назад
12345678910111213141516
  1. import { BsPrefixRefForwardingComponent } from './helpers';
  2. export interface FormCheckInputProps {
  3. id?: string;
  4. type?: 'checkbox' | 'radio';
  5. isStatic?: boolean;
  6. isValid?: boolean;
  7. isInvalid?: boolean;
  8. }
  9. declare interface FormCheckInput
  10. extends BsPrefixRefForwardingComponent<'input', FormCheckInputProps> {}
  11. declare const FormCheckInput: FormCheckInput;
  12. export default FormCheckInput;