### ButtonSample
```kotlin
@Composable
fun ButtonSample() {
    Button(onClick = {}) { Text("Send") }
}
```
### ButtonWithLeadingIconSample
```kotlin
@Composable
fun ButtonWithLeadingIconSample() {
    Button(onClick = {}, leadingIcon = { Icon(FavoriteIcon, "Localized description") }) {
        Text("Send")
    }
}
```
### LargeButtonSample
```kotlin
@Composable
fun LargeButtonSample() {
    Button(onClick = {}, buttonSize = ButtonSize.Large) { Text("Send") }
}
```