Checkbox

<Flex isColumn={true} gap={4}>
	<Checkbox
		isChecked={isChecked}
		intent={intent}
		isDisabled={isDisabled}
		label="Fully Autonomous"
		onChange={onToggle} />
</Flex>
NameTypeDescriptionRequired
id
string
-
intent
HeliosIntentionType
-
Yes
isChecked
boolean
-
isDisabled
boolean
-
isLabelHidden
boolean
-
isRequired
boolean
-
isSmall
boolean
-
label
string
-
Yes
onChange
(event?: ChangeEvent) => void
-