ContainerBox

@Composable
fun ContainerBox(enabled: Boolean, isError: Boolean, interactionSource: InteractionSource, colors: TextFieldColors, shape: Shape = TextFieldDefaults.shape)

Deprecated

Renamed to TextFieldDefaults.Container

Replace with

Container(
    enabled = enabled,
    isError = isError,
    interactionSource = interactionSource,
    colors = colors,
    shape = shape,
)