Android folks, to set an accessibility description for a `Button` in Compose, do I always need to provide a `Modifier.clickable` with an empty `onClick` lambda. It seems the Button's `onClick` property is the only one used and the Modifier's `onClick` is always ignored.
Seems a bit confusing in terms of Api design. How does Compose explain this?

