Add search icon

This commit is contained in:
Hazem Krimi
2021-04-21 00:24:23 +01:00
parent d4434d03dd
commit 3e8addb43f
2 changed files with 8 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z" stroke="#20063B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M9 17C13.4183 17 17 13.4183 17 9C17 4.58172 13.4183 1 9 1C4.58172 1 1 4.58172 1 9C1 13.4183 4.58172 17 9 17Z" stroke="white" stroke-opacity="0.75" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.9999 18.9999L14.6499 14.6499" stroke="#20063B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
<path d="M18.9999 18.9999L14.6499 14.6499" stroke="white" stroke-opacity="0.75" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>

After

Width:  |  Height:  |  Size: 799 B

+2 -1
View File
@@ -1,5 +1,6 @@
import { ReactComponent as Add } from './icons/add.svg'; import { ReactComponent as Add } from './icons/add.svg';
import { ReactComponent as Upload } from './icons/upload.svg'; import { ReactComponent as Upload } from './icons/upload.svg';
import { ReactComponent as ChevronDown } from './icons/chevron-down.svg'; import { ReactComponent as ChevronDown } from './icons/chevron-down.svg';
import { ReactComponent as Search } from './icons/search.svg';
export { Add, Upload, ChevronDown }; export { Add, Upload, ChevronDown, Search };