### ClickableListItemSample
```kotlin
@Composable
fun ClickableListItemSample() {
    ListItem(onClick = {}) { Text("Primary Label") }
}
```
### ClickableListItemWithSupportingLabelAndLeadingIconSample
```kotlin
@Composable
fun ClickableListItemWithSupportingLabelAndLeadingIconSample() {
    ListItem(
        onClick = {},
        supportingLabel = { Text("Supporting Label") },
        leadingIcon = { Icon(FavoriteIcon, "Localized description") },
    ) {
        Text("Primary Label")
    }
}
```
### ClickableListItemWithSupportingLabelSample
```kotlin
@Composable
fun ClickableListItemWithSupportingLabelSample() {
    ListItem(onClick = {}, supportingLabel = { Text("Supporting Label") }) { Text("Primary Label") }
}
```
### ListItemSample
```kotlin
@Composable
fun ListItemSample() {
    ListItem { Text("Primary Label") }
}
```
### ListItemWithSupportingLabelAndLeadingIconSample
```kotlin
@Composable
fun ListItemWithSupportingLabelAndLeadingIconSample() {
    ListItem(
        supportingLabel = { Text("Supporting Label") },
        leadingIcon = { Icon(FavoriteIcon, "Localized description") },
    ) {
        Text("Primary Label")
    }
}
```
### ListItemWithSupportingLabelSample
```kotlin
@Composable
fun ListItemWithSupportingLabelSample() {
    ListItem(supportingLabel = { Text("Supporting Label") }) { Text("Primary Label") }
}
```