VgsCvcOutlinedTextField

fun VgsCvcOutlinedTextField(state: VgsCvcTextFieldState, onStateChange: (state: VgsCvcTextFieldState) -> Unit, modifier: Modifier = Modifier, enabled: Boolean = true, readOnly: Boolean = false, textStyle: TextStyle = LocalTextStyle.current, label: @Composable () -> Unit? = null, placeholder: @Composable () -> Unit? = null, leadingIcon: @Composable () -> Unit? = null, trailingIcon: @Composable () -> Unit? = null, supportingText: @Composable () -> Unit? = null, isError: Boolean = false, keyboardOptions: KeyboardOptions = KeyboardOptions.Default, keyboardActions: KeyboardActions = KeyboardActions.Default, interactionSource: MutableInteractionSource? = null, shape: Shape = OutlinedTextFieldDefaults.shape, colors: TextFieldColors = OutlinedTextFieldDefaults.colors())

Outlined Material 3 variant of VgsCvcTextField. See VgsCvcTextField for usage. Parameters match androidx.compose.material3.OutlinedTextField.