From 021af3e70fcd5fccfee94d29112aec9124ca5c00 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Tue, 13 Sep 2022 18:04:42 +0200 Subject: [PATCH] TextInputGroup Change border color to yellow when modified --- src/Components/InputGroup/TextInputGroup.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/InputGroup/TextInputGroup.tsx b/src/Components/InputGroup/TextInputGroup.tsx index 05bcdcc..324893d 100644 --- a/src/Components/InputGroup/TextInputGroup.tsx +++ b/src/Components/InputGroup/TextInputGroup.tsx @@ -35,7 +35,7 @@ export function TextInputGroup(props: ITextInputGroupProps): JSX.Element { } } - const warningClass = props.value !== value ? 'focus:border-orange-200 border-orange-200 focus:ring-orange-200 ring-orange-200' : ''; + const warningClass = props.value !== value ? 'focus:border-yellow-300 border-yellow-300 focus:ring-yellow-300 ring-yellow-300' : ''; return <>