UNPKG

@defikitdotnet/education-module-ai

Version:
8 lines (7 loc) 318 B
import * as React from "react"; interface CheckboxProps extends React.InputHTMLAttributes<HTMLInputElement> { checked?: boolean; onCheckedChange?: (checked: boolean) => void; } declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>; export { Checkbox };