### SwitchSample
```kotlin
@Composable
fun SwitchSample() {
    Switch(checked = true, onCheckedChange = {})
}
```