From 7063ce759d735d0ba27353253ac79a96654ef1d4 Mon Sep 17 00:00:00 2001 From: Justin Date: Thu, 8 Sep 2022 08:28:19 -0400 Subject: [PATCH] Add JSDOC --- app/soapbox/components/ui/input/input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/soapbox/components/ui/input/input.tsx b/app/soapbox/components/ui/input/input.tsx index 2bd77dbfa..c77ae8169 100644 --- a/app/soapbox/components/ui/input/input.tsx +++ b/app/soapbox/components/ui/input/input.tsx @@ -36,6 +36,7 @@ interface IInput extends Pick, 'maxL prepend?: React.ReactElement, /** An element to display as suffix to input. Cannot be used with password type. */ append?: React.ReactElement, + /** Adds specific styling to denote a searchabe input. */ isSearch?: boolean, }