feat: Add sort icons (#3)

* feat: Add `sort` icons

* refactor: Remove unnecessary icons

* chore: remove icon
This commit is contained in:
John Letey
2020-06-13 08:41:46 +01:00
committed by GitHub
parent 433bbae4f1
commit 6a3378ce5a
2 changed files with 34 additions and 0 deletions

17
icons/sort-asc.svg Normal file
View File

@@ -0,0 +1,17 @@
<svg
width="24"
height="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M11 5h10" />
<path d="M11 9h7" />
<path d="M11 13h4" />
<path d="M3 17l3 3 3-3" />
<path d="M6 18V4" />
</svg>

After

Width:  |  Height:  |  Size: 331 B

17
icons/sort-desc.svg Normal file
View File

@@ -0,0 +1,17 @@
<svg
width="24"
height="24"
viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M11 5h4" />
<path d="M11 9h7" />
<path d="M11 13h10" />
<path d="M3 17l3 3 3-3" />
<path d="M6 18V4" />
</svg>

After

Width:  |  Height:  |  Size: 331 B