Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
shubertm committed Jul 22, 2024
1 parent 91ee12c commit 3d873a6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import androidx.compose.material.Icon
import androidx.compose.material.Text
import androidx.compose.material.TextButton
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.automirrored.filled.KeyboardArrowLeft
import androidx.compose.material.icons.automirrored.filled.KeyboardArrowRight
import androidx.compose.material.icons.filled.KeyboardArrowLeft
import androidx.compose.material.icons.filled.KeyboardArrowRight
import androidx.compose.runtime.Composable
Expand Down Expand Up @@ -197,7 +199,7 @@ fun BoxScope.UsedColorsFlowHint(
.align(Alignment.CenterStart)
) {
Icon(
Icons.Filled.KeyboardArrowLeft,
Icons.AutoMirrored.Filled.KeyboardArrowLeft,
contentDescription = null,
Modifier.size(32.dp)
)
Expand All @@ -213,7 +215,7 @@ fun BoxScope.UsedColorsFlowHint(
.align(Alignment.CenterEnd)
) {
Icon(
Icons.Filled.KeyboardArrowRight,
Icons.AutoMirrored.Filled.KeyboardArrowRight,
contentDescription = null,
Modifier.size(32.dp)
)
Expand Down

0 comments on commit 3d873a6

Please sign in to comment.