From 0f178432d8cb1bb3a001b3be4e2e4a434866ca78 Mon Sep 17 00:00:00 2001 From: PRANTA Dutta <44747303+theprantadutta@users.noreply.github.com> Date: Tue, 4 Aug 2026 21:25:03 +0600 Subject: [PATCH] Remove outdated multiline single-side border caveat from TextInput docs --- docs/textinput.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/textinput.md b/docs/textinput.md index 7ea60e3c802..18eae0c77a1 100644 --- a/docs/textinput.md +++ b/docs/textinput.md @@ -50,7 +50,7 @@ export default TextInputExample; Two methods exposed via the native element are `.focus()` and `.blur()` that will focus or blur the TextInput programmatically. -Note that some props are only available with `multiline={true/false}`. Additionally, border styles that apply to only one side of the element (e.g., `borderBottomColor`, `borderLeftWidth`, etc.) will not be applied if `multiline=true`. To achieve the same effect, you can wrap your `TextInput` in a `View`: +Note that some props are only available with `multiline={true/false}`: ```SnackPlayer name=Multiline%20TextInput%20Example import {useState} from 'react';