Compose Box layout showing white background when applying Clip Option

Box( modifier = Modifier
.size(50.dp)
.clip(CircleShape)
.background(colorResource(id = R.color.black_trans))
)
Is there any way to transparent the background when CircleClip is applied?
https://developer.android.com/jetpack/compose/modifiers