21 lines
424 B
TypeScript
21 lines
424 B
TypeScript
function SearchIcon() {
|
|
return (
|
|
<svg
|
|
width={16}
|
|
height={16}
|
|
viewBox="0 0 16 16"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M7 12.667A5.667 5.667 0 1 0 7 1.333a5.667 5.667 0 0 0 0 11.334Zm4.074-1.593 2.828 2.828"
|
|
stroke="currentColor"
|
|
strokeWidth={1.2}
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default SearchIcon;
|