From 413662dc32d133d0be0b4edd487782e2860f659e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20H=C3=B8fft?= <6759267+MortenHofft@users.noreply.github.com> Date: Wed, 23 Oct 2024 14:12:48 +0200 Subject: [PATCH] component: input field with search button --- packages/gbif-org/src/components/searchInput.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/gbif-org/src/components/searchInput.tsx b/packages/gbif-org/src/components/searchInput.tsx index ae7de6af8..97a957eb0 100644 --- a/packages/gbif-org/src/components/searchInput.tsx +++ b/packages/gbif-org/src/components/searchInput.tsx @@ -8,17 +8,18 @@ export interface InputProps extends React.InputHTMLAttributes const SearchInput = React.forwardRef( ({ className, type, ...props }, ref) => { return ( -
+
- +
); }