diff --git a/android/app/src/main/java/com/fabledsword/minstrel/library/ui/LibraryScreen.kt b/android/app/src/main/java/com/fabledsword/minstrel/library/ui/LibraryScreen.kt index ce3e9d79..bba5b2a8 100644 --- a/android/app/src/main/java/com/fabledsword/minstrel/library/ui/LibraryScreen.kt +++ b/android/app/src/main/java/com/fabledsword/minstrel/library/ui/LibraryScreen.kt @@ -43,6 +43,8 @@ import com.fabledsword.minstrel.models.ArtistRef import com.fabledsword.minstrel.nav.AlbumDetail import com.fabledsword.minstrel.nav.ArtistDetail import com.fabledsword.minstrel.nav.Library +import com.composables.icons.lucide.Lucide +import com.composables.icons.lucide.Shuffle import com.fabledsword.minstrel.shared.widgets.EmptyState import com.fabledsword.minstrel.shared.widgets.ErrorRetry import com.fabledsword.minstrel.shared.widgets.MainAppBarActions @@ -87,7 +89,7 @@ fun LibraryScreen( actions = { IconButton(onClick = viewModel::shuffleAll) { Icon( - imageVector = com.composables.icons.lucide.Lucide.Shuffle, + imageVector = Lucide.Shuffle, contentDescription = "Shuffle all", tint = MaterialTheme.colorScheme.onSurface, )