We will not fix this because we don't have enough time and it's a minor problem (because design and UIUX are not the focus of our project)
Searched on following sites:
Tried out adding following modifier which didn't change anything:
modifier = Modifier.pointerMoveFilter(
onEnter = {
frameWindowScope.window.cursor = Cursor(HAND_CURSOR)
println("On Mouse(pointer) Enter")
false
},
onExit = {
frameWindowScope.getDefaultCursor()
println("on Mouse(pointer) Exit")
false
})