### RemoteIconButtonSimpleSample
```kotlin
@Composable
fun RemoteIconButtonSimpleSample(modifier: RemoteModifier = RemoteModifier) {
    RemoteIconButton(testAction, modifier = modifier, colors = tonalColors) {
        RemoteIcon(imageVector = TestImageVectors.VolumeUp, contentDescription = null)
    }
}
```