snort/src/Icons/Search.tsx

10 lines
422 B
TypeScript
Raw Normal View History

2023-01-28 21:43:56 +00:00
const Search = () => {
return (
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
2023-01-29 22:11:04 +00:00
<path d="M19 19.5L14.65 15.15M17 9.5C17 13.9183 13.4183 17.5 9 17.5C4.58172 17.5 1 13.9183 1 9.5C1 5.08172 4.58172 1.5 9 1.5C13.4183 1.5 17 5.08172 17 9.5Z" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round"/>
2023-01-28 21:43:56 +00:00
</svg>
)
}
export default Search