UNPKG

@university-ecosystem/ui-kit

Version:
9 lines (8 loc) 228 B
/// <reference types="react" /> export type CheckboxProps = { title?: React.ReactElement | string; value: string | number; checked: boolean; onSelect: (value: string | number) => void; disabled?: boolean; };