Skip to content

Commit 94903a6

Browse files
committed
Add search icon for the searchbar.
1 parent acc2f47 commit 94903a6

File tree

1 file changed

+18
-0
lines changed
  • netflix-create-react-vite-app/src/components/navbarmenu/navbarheader/search-bar

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import React from 'react';
2+
3+
export const SearchIcon = () => (
4+
<svg
5+
xmlns="http://www.w3.org/2000/svg"
6+
width="24"
7+
height="24"
8+
viewBox="0 0 24 24"
9+
fill="none"
10+
stroke="currentColor"
11+
strokeWidth="2"
12+
strokeLinecap="round"
13+
strokeLinejoin="round"
14+
>
15+
<circle cx="11" cy="11" r="8" />
16+
<line x1="21" y1="21" x2="16.65" y2="16.65" />
17+
</svg>
18+
);

0 commit comments

Comments
 (0)