Skip to main content

OryNodeCheckboxInputProps

type OryNodeCheckboxInputProps = {
checked: boolean
disabled?: boolean
name: string
onChange: (event: any) => void
ref: (instance: any) => void
type: "checkbox"
value: string | number | readonly string[] | undefined
}

Properties​

checked​

checked: boolean

disabled?​

optional disabled: boolean;

name​

name: string

onChange()​

onChange: (event: any) => void;

Parameters​

ParameterType
eventany

Returns​

void


ref()​

ref: (instance: any) => void;

Parameters​

ParameterType
instanceany

Returns​

void


type​

type: "checkbox"

value​

value: string | number | readonly string[] | undefined;