UNPKG

hh-ui-components

Version:
14 lines (13 loc) 323 B
import React from "react"; export interface CheckboxProps { type?: "checkbox" | "radio"; label: string; checked?: boolean; value: string; required?: boolean; disabled?: boolean; onChange?: any; onClick?: any; className?: string; } export declare const Checkbox: React.FC<CheckboxProps>;