Skip to content

Commit

Permalink
Update deprecated icon
Browse files Browse the repository at this point in the history
  • Loading branch information
LordRaydenMK committed Feb 25, 2024
1 parent e49924f commit d6739fb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import androidx.compose.material.IconButton
import androidx.compose.material.Text
import androidx.compose.material.TopAppBar
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.ArrowBack
import androidx.compose.material.icons.automirrored.filled.ArrowBack
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.ui.Alignment
Expand Down Expand Up @@ -60,7 +60,7 @@ private fun SuperheroAppBar(
title = { Text(text = state.title) },
navigationIcon = {
IconButton(onClick = { actions.trySend(Up).getOrThrow() }) {
Icon(Icons.Filled.ArrowBack, contentDescription = "")
Icon(Icons.AutoMirrored.Filled.ArrowBack, contentDescription = "")
}
}
)
Expand Down

0 comments on commit d6739fb

Please sign in to comment.