Add arrow icons

This commit is contained in:
Cole Bemis 2017-04-29 21:55:52 -07:00
parent b5ec1ffa8e
commit 385aa9e7ac
6 changed files with 24 additions and 0 deletions

View File

@ -67,6 +67,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- [SVG Stroke FTW!](http://danklammer.com/articles/svg-stroke-ftw/) - [SVG Stroke FTW!](http://danklammer.com/articles/svg-stroke-ftw/)
- Change # icons: - Change # icons:
- `anchor` - `anchor`
- `arrow-down`
- `arrow-left`
- `arrow-right`
- `arrow-up`
- `bell` - `bell`
- `bookmark` - `bookmark`
- `camera` - `camera`

View File

@ -78,6 +78,10 @@
"edit", "edit",
"cog", "cog",
"map", "map",
"arrow-up",
"arrow-down",
"arrow-left",
"arrow-right",
"octagon", "octagon",
"triangle", "triangle",
"square", "square",

4
icons/arrow-down.svg Normal file
View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="12" y1="4" x2="12" y2="20"/>
<polyline points="18 14 12 20 6 14"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

4
icons/arrow-left.svg Normal file
View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="20" y1="12" x2="4" y2="12"/>
<polyline points="10 18 4 12 10 6"/>
</svg>

After

Width:  |  Height:  |  Size: 260 B

4
icons/arrow-right.svg Normal file
View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="4" y1="12" x2="20" y2="12"/>
<polyline points="14 6 20 12 14 18"/>
</svg>

After

Width:  |  Height:  |  Size: 261 B

4
icons/arrow-up.svg Normal file
View File

@ -0,0 +1,4 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="12" y1="20" x2="12" y2="4"/>
<polyline points="6 10 12 4 18 10"/>
</svg>

After

Width:  |  Height:  |  Size: 260 B