### CheckboxSample
```kotlin
@Composable
fun CheckboxSample() {
    Checkbox(checked = true, onCheckedChange = {})
}
```