ContainerBox

@Composable
fun ContainerBox(enabled: Boolean, isError: Boolean, interactionSource: InteractionSource, colors: TextFieldColors = colors(), shape: Shape = OutlinedTextFieldDefaults.shape, focusedBorderThickness: Dp = FocusedBorderThickness, unfocusedBorderThickness: Dp = UnfocusedBorderThickness)

Deprecated

Renamed to OutlinedTextFieldDefaults.Container

Replace with

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