feat: Add undo and redo icons (#48)

* feat: Add `undo` and `redo` icons

* move undo and redo icons downl to align with grid

* move starting point of arrows down to align with point

* refactor: remove extra stroke-width

* reactor: whitespace

Co-authored-by: Eric Fennis <eric.fennis@gmail.com>

* refactor: replace change points instead of using translate.

Co-authored-by: Eric Fennis <eric.fennis@gmail.com>

* refactor: use changed points instead of using translate.

Co-authored-by: Eric Fennis <eric.fennis@gmail.com>

Co-authored-by: Eric Fennis <eric.fennis@gmail.com>
This commit is contained in:
Frank Riccobono
2020-07-21 09:18:21 -04:00
committed by GitHub
parent 9b56ae3b25
commit 53ba672ca6
2 changed files with 28 additions and 0 deletions

14
icons/redo.svg Normal file
View File

@@ -0,0 +1,14 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<polyline points="22 10 22 16 16 16" />
<path d="m1.9935 16c1.8136-6.5424 9.5593-9.4823 15.36-4.36l4.64 4.36" />
</svg>

After

Width:  |  Height:  |  Size: 325 B

14
icons/undo.svg Normal file
View File

@@ -0,0 +1,14 @@
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<polyline points="2 10 2 16 8 16" />
<path d="m22 16c-1.8136-6.5424-9.5593-9.4823-15.36-4.36l-4.64 4.36" />
</svg>

After

Width:  |  Height:  |  Size: 320 B