diff --git a/composeApp/src/commonMain/composeResources/drawable/handshake_24px.xml b/composeApp/src/commonMain/composeResources/drawable/handshake_24px.xml new file mode 100644 index 0000000..2d1e100 --- /dev/null +++ b/composeApp/src/commonMain/composeResources/drawable/handshake_24px.xml @@ -0,0 +1,10 @@ + + + diff --git a/composeApp/src/commonMain/kotlin/component/Search.kt b/composeApp/src/commonMain/kotlin/component/Search.kt index b9e065c..6cdc6e5 100644 --- a/composeApp/src/commonMain/kotlin/component/Search.kt +++ b/composeApp/src/commonMain/kotlin/component/Search.kt @@ -90,11 +90,12 @@ private fun OptionsMenu(expanded: MutableState) { text = { Text("About") }, onClick = { /* TODO open about screen */ }, leadingIcon = { Icon(imageVector = Icons.Outlined.Place, contentDescription = "Information about the application") } + leadingIcon = { Icon(imageVector = Icons.Outlined.Info, contentDescription = "Information about the application") } ) DropdownMenuItem( text = { Text("Licenses") }, onClick = { navigator.push(Licenses) }, - leadingIcon = { Icon(imageVector = Icons.Outlined.Info, contentDescription = "Information about Licenses") } + leadingIcon = { Icon(painter = painterResource(Res.drawable.handshake_24px), contentDescription = "Information about Licenses") } ) } }