mattinger
02/25/2022, 6:21 PM@Composable
fun HeroBlock(
modifier: Modifier = Modifier,
data: Any,
contentDescription: String? = null
) {
CoilImage(
modifier = modifier
.testTag(TestTags.Hero)
.semantics {
this.heroData = data
},
contentDescription = contentDescription,
imageModel = data
)
}