UNPKG

@pdf-viewer/react

Version:

A react-pdf-viewer component for React and Next.js. Suitable for react-pdf document.

11 lines (10 loc) 291 B
import { PropsWithChildren, FC } from 'react'; interface UICheckboxProps { value?: boolean; onChange?: (value: boolean) => void; name: string; tabIndex?: number; 'aria-label'?: string; } export declare const UICheckbox: FC<PropsWithChildren<UICheckboxProps>>; export {};