OryNodeConsentScopeCheckboxProps
type OryNodeConsentScopeCheckboxProps = {
attributes: UiNodeInputAttributes
inputProps: {
checked: boolean
disabled?: boolean
name: string
value: string
}
node: UiNode
onCheckedChange: (checked: boolean) => void
}
Properties
attributes
attributes: UiNodeInputAttributes
inputProps
inputProps: {
checked: boolean;
disabled?: boolean;
name: string;
value: string;
};
| Name | Type |
|---|---|
checked | boolean |
disabled? | boolean |
name | string |
value | string |
node
node: UiNode
onCheckedChange()
onCheckedChange: (checked: boolean) => void;
Parameters
| Parameter | Type |
|---|---|
checked | boolean |
Returns
void