UNPKG

@clubmed/trident-ui

Version:

Shared ClubMed React UI components

6 lines (5 loc) 502 B
import { type HTMLAttributes } from 'react'; import type { FormControlProps } from '../FormControl.js'; export interface CheckboxesProps<Value = string> extends Pick<FormControlProps<Value[]>, 'id' | 'name' | 'value' | 'onChange' | 'disabled' | 'readOnly' | 'tabIndex' | 'description' | 'validationStatus' | 'errorMessage'>, Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> { } export declare function Checkboxes<Value = string>(props: CheckboxesProps<Value>): import("react/jsx-runtime").JSX.Element;