diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-04 15:38:40 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-04 15:38:40 +0700 |
| commit | 6e816fba49e020bfdc3f1ffa10183b585e87d9c1 (patch) | |
| tree | 4e8b19f2f3f4da8d783678d58d8c35d2773bab45 /src/core/components/elements/Navbar/Search.jsx | |
| parent | ffebc1b10550e10de6cde9b4757dd0d5a4cf644c (diff) | |
optimizing performance
Diffstat (limited to 'src/core/components/elements/Navbar/Search.jsx')
| -rw-r--r-- | src/core/components/elements/Navbar/Search.jsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/components/elements/Navbar/Search.jsx b/src/core/components/elements/Navbar/Search.jsx index 77510773..47a9c235 100644 --- a/src/core/components/elements/Navbar/Search.jsx +++ b/src/core/components/elements/Navbar/Search.jsx @@ -56,7 +56,11 @@ const Search = () => { onBlur={onInputBlur} onFocus={loadSuggestion} /> - <button type='submit' className='rounded-r border border-l-0 border-gray_r-6 px-2'> + <button + type='submit' + aria-label='SearchButton' + className='rounded-r border border-l-0 border-gray_r-6 px-2' + > <MagnifyingGlassIcon className='w-6' /> </button> |
