Add indentation icons in/out (#102)

This commit is contained in:
Themistoklis
2020-10-27 21:39:23 +01:00
committed by GitHub
parent 5c96b8d848
commit 29574a6385
2 changed files with 32 additions and 0 deletions

16
icons/indent.svg Normal file
View File

@@ -0,0 +1,16 @@
<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="3 8 7 12 3 16" />
<line x1="21" y1="12" x2="11" y2="12" />
<line x1="21" y1="6" x2="11" y2="6" />
<line x1="21" y1="18" x2="11" y2="18" />
</svg>

After

Width:  |  Height:  |  Size: 373 B

16
icons/outdent.svg Normal file
View File

@@ -0,0 +1,16 @@
<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="7 8 3 12 7 16" />
<line x1="21" y1="12" x2="11" y2="12" />
<line x1="21" y1="6" x2="11" y2="6" />
<line x1="21" y1="18" x2="11" y2="18" />
</svg>

After

Width:  |  Height:  |  Size: 373 B