MdOutlinedTextField

@Composable
fun MdOutlinedTextField(disabled: Boolean? = null, error: Boolean? = null, errorText: String? = null, label: String? = null, required: Boolean? = null, value: String? = null, prefixText: String? = null, suffixText: String? = null, hasLeadingIcon: Boolean? = null, hasTrailingIcon: Boolean? = null, supportingText: String? = null, textDirection: String? = null, rows: Int? = null, cols: Int? = null, inputMode: InputMode? = null, max: String? = null, maxLength: Int? = null, min: String? = null, minLength: Int? = null, pattern: String? = null, placeholder: String? = null, readOnly: Boolean? = null, multiple: Boolean? = null, step: String? = null, type: InputType<*>? = null, autocomplete: AutoComplete? = null, attrs: Attrs<HTMLElement>? = null, content: @Composable MdTextFieldScope.() -> Unit? = null)(source)