### WideButtonSample
```kotlin
@Composable
fun WideButtonSample() {
    WideButton(onClick = {}) { Text("Settings") }
}
```
### WideButtonWithIcon
```kotlin
@Composable
fun WideButtonWithIcon() {
    WideButton(
        onClick = {},
        title = { Text("Settings") },
        icon = { Icon(imageVector = Icons.Default.Settings, contentDescription = "Settings") },
    )
}
```
### WideButtonWithIconAndSubtitle
```kotlin
@Composable
fun WideButtonWithIconAndSubtitle() {
    WideButton(
        onClick = {},
        title = { Text("Settings") },
        subtitle = { Text(text = "Update device preferences") },
        icon = { Icon(imageVector = Icons.Default.Settings, contentDescription = "Settings") },
    )
}
```
### WideButtonWithSubtitle
```kotlin
@Composable
fun WideButtonWithSubtitle() {
    WideButton(
        onClick = {},
        title = { Text("Settings") },
        subtitle = { Text(text = "Update device preferences") },
    )
}
```