Checkbox
Installation
import { Checkbox } from 'uxp/components';Signature
const Checkbox: React.ForwardRefExoticComponent<React.RefAttributes<ICheckboxInstanceProps> & ICheckboxProps>Examples
<Checkbox
checked={checked}
onChange={(isChecked) => setChecked(isChecked)}
label='Are you sure'
/><Checkbox
checked='intermediate'
onChange={(isChecked) => setChecked(isChecked)}
label='Partial selection'
type="switch-box"
/>Properties
Name
Type
Mandatory
Default Value
Example Value
Ref Handlers
Method
Type
Description
Related Types
Last updated