<h2 id="remoteavatarimage-avatar-contentdescription-modifier-contentscale">RemoteAvatarImage</h2>

<div class='sourceset sourceset-android'>Android</div>

```kotlin
@Composable
@RemoteComposable
public fun RemoteAvatarImage(
    avatar: RemoteBitmap,
    contentDescription: RemoteString?,
    modifier: RemoteModifier = RemoteModifier,
    contentScale: ContentScale = ContentScale.FillBounds,
)
```

A remote composable that displays a [RemoteBitmap](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBitmap) styled as an avatar.

#### Parameters

| | |
| --- | --- |
| avatar | The [RemoteBitmap](/jetpack-compose/androidx.compose.remote/remote-creation-compose/classes/RemoteBitmap) to be displayed. |
| contentDescription | A text description for accessibility. |
| modifier | The [RemoteModifier](/jetpack-compose/androidx.compose.remote/remote-creation-compose/interfaces/RemoteModifier) to be applied to this composable. |
| contentScale | The [ContentScale](/jetpack-compose/androidx.compose.ui/ui/interfaces/ContentScale) to be applied to the image. |