Modal
Modals are used to highlight elements showing it in foreground
Switch Off
<Switch
changed={(status) => console.log(status)}
/>
Switch On
<Switch
on={true}
changed={(status) => console.log(status)}
/>
Switch Off Disabled
<Switch
disabled={true}
changed={(status) => console.log(status)}
/>
Switch On Disabled
<Switch
on={true}
disabled={true}
changed={(status) => console.log(status)}
/>
Switch With Label
<Switch
label='This is the label'
changed={(status) => console.log(status)}
/>