UNPKG

@availity/form

Version:

Form Wrapper around formik using reactstrap components

19 lines (15 loc) 480 B
/* eslint-disable @typescript-eslint/ban-types */ import { HTMLAttributes, ReactNode } from 'react'; export interface CheckboxProps extends HTMLAttributes<HTMLInputElement> { label?: ReactNode; value?: string | boolean | object; inline?: boolean; disabled?: boolean; id?: string; groupClassName?: string; groupName?: string; helpId?: string; isHelpVideoType?: boolean; } declare const Checkbox: (props: CheckboxProps) => JSX.Element; export default Checkbox;