diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt index 735c6c705..2a522939b 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/navigation/drawer/DrawerContent.kt @@ -548,8 +548,7 @@ fun ListContent( if (isDebug) { NavigationRow( title = R.string.route_chess, - icon = R.drawable.ic_chess, - iconReference = 1, + icon = MaterialSymbols.ChessKnight, tint = MaterialTheme.colorScheme.onBackground, nav = nav, route = Route.Chess, diff --git a/amethyst/src/main/res/drawable/ic_chess.xml b/amethyst/src/main/res/drawable/ic_chess.xml deleted file mode 100644 index 5786fe6c1..000000000 --- a/amethyst/src/main/res/drawable/ic_chess.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/icons/symbols/MaterialSymbols.kt b/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/icons/symbols/MaterialSymbols.kt index b3a65d107..8bd3931f3 100644 --- a/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/icons/symbols/MaterialSymbols.kt +++ b/commons/src/commonMain/kotlin/com/vitorpamplona/amethyst/commons/icons/symbols/MaterialSymbols.kt @@ -59,6 +59,7 @@ object MaterialSymbols { val Chat = MaterialSymbol("\uE0C9") val Check = MaterialSymbol("\uE5CA") val CheckCircle = MaterialSymbol("\uF0BE") + val ChessKnight = MaterialSymbol("\uF25E") val Checklist = MaterialSymbol("\uE6B1") val ChevronRight = MaterialSymbol("\uE5CC") val Circle = MaterialSymbol("\uEF4A")