aboutsummaryrefslogtreecommitdiff
path: root/src/_icons
diff options
context:
space:
mode:
authorcodecalm <codecalm@gmail.com>2020-03-21 20:02:57 +0100
committercodecalm <codecalm@gmail.com>2020-03-21 20:02:57 +0100
commit0908f417fe8cf18f6f88463eced6926c0e9d99de (patch)
treecbdbc01c6f21107991906537e4eeddaf79905f9c /src/_icons
parentbuild new version (diff)
downloadtabler-icons-0908f417fe8cf18f6f88463eced6926c0e9d99de.tar.xz
16 new icons: `alarm`, `arrow-back`, `arrow-forward`, `artboard`, `award`, `bug`, `calendar-event`, `globe`, `help`, `mug`, `palette`, `pencil`, `record-mail`, `ruler`, `scissors`, `stack`
Fixed icons: `directions`, `disabled`, `disc`, `edit`, `switch-vertical`
Diffstat (limited to 'src/_icons')
-rw-r--r--src/_icons/alarm.svg9
-rw-r--r--src/_icons/arrow-back.svg6
-rw-r--r--src/_icons/arrow-forward.svg6
-rw-r--r--src/_icons/artboard.svg13
-rw-r--r--src/_icons/award.svg6
-rw-r--r--src/_icons/bug.svg13
-rw-r--r--src/_icons/calendar-event.svg10
-rw-r--r--src/_icons/directions.svg4
-rw-r--r--src/_icons/disabled.svg2
-rw-r--r--src/_icons/disc.svg4
-rw-r--r--src/_icons/edit.svg1
-rw-r--r--src/_icons/globe.svg8
-rw-r--r--src/_icons/help.svg7
-rw-r--r--src/_icons/mug.svg6
-rw-r--r--src/_icons/palette.svg8
-rw-r--r--src/_icons/pencil.svg6
-rw-r--r--src/_icons/record-mail.svg7
-rw-r--r--src/_icons/ruler.svg11
-rw-r--r--src/_icons/scissors.svg8
-rw-r--r--src/_icons/stack.svg7
-rw-r--r--src/_icons/switch-vertical.svg2
21 files changed, 138 insertions, 6 deletions
diff --git a/src/_icons/alarm.svg b/src/_icons/alarm.svg
new file mode 100644
index 0000000..4b7996b
--- /dev/null
+++ b/src/_icons/alarm.svg
@@ -0,0 +1,9 @@
+---
+tags: [time, watch, clock]
+---
+<svg>
+ <circle cx="12" cy="13" r="7" />
+ <polyline points="12 10 12 13 14 13" />
+ <line x1="7" y1="4" x2="4.25" y2="6" />
+ <line x1="17" y1="4" x2="19.75" y2="6" />
+</svg>
diff --git a/src/_icons/arrow-back.svg b/src/_icons/arrow-back.svg
new file mode 100644
index 0000000..dab9f27
--- /dev/null
+++ b/src/_icons/arrow-back.svg
@@ -0,0 +1,6 @@
+---
+tags: []
+---
+<svg>
+ <path d="M9 11l-4 4l4 4m-4 -4h11a4 4 0 0 0 0 -8h-1" />
+</svg>
diff --git a/src/_icons/arrow-forward.svg b/src/_icons/arrow-forward.svg
new file mode 100644
index 0000000..34c5e1d
--- /dev/null
+++ b/src/_icons/arrow-forward.svg
@@ -0,0 +1,6 @@
+---
+tags: []
+---
+<svg>
+ <path d="M15 11l4 4l-4 4m4 -4h-11a4 4 0 0 1 0 -8h1" />
+</svg>
diff --git a/src/_icons/artboard.svg b/src/_icons/artboard.svg
new file mode 100644
index 0000000..ebf7104
--- /dev/null
+++ b/src/_icons/artboard.svg
@@ -0,0 +1,13 @@
+---
+---
+<svg>
+ <rect x="8" y="8" width="8" height="8" rx="1" />
+ <line x1="3" y1="8" x2="4" y2="8" />
+ <line x1="3" y1="16" x2="4" y2="16" />
+ <line x1="8" y1="3" x2="8" y2="4" />
+ <line x1="16" y1="3" x2="16" y2="4" />
+ <line x1="20" y1="8" x2="21" y2="8" />
+ <line x1="20" y1="16" x2="21" y2="16" />
+ <line x1="8" y1="20" x2="8" y2="21" />
+ <line x1="16" y1="20" x2="16" y2="21" />
+</svg>
diff --git a/src/_icons/award.svg b/src/_icons/award.svg
new file mode 100644
index 0000000..3f488f3
--- /dev/null
+++ b/src/_icons/award.svg
@@ -0,0 +1,6 @@
+---
+---
+<svg>
+ <circle cx="12" cy="9" r="6" />
+ <polyline points="8 13.5 8 21 12 19 16 21 16 13.5" />
+</svg>
diff --git a/src/_icons/bug.svg b/src/_icons/bug.svg
new file mode 100644
index 0000000..9bf0b4f
--- /dev/null
+++ b/src/_icons/bug.svg
@@ -0,0 +1,13 @@
+---
+---
+<svg>
+ <path d="M9 9v-1a3 3 0 0 1 6 0v1" />
+ <path d="M8 9h8a6 6 0 0 1 1 3v3a5 5 0 0 1 -10 0v-3a6 6 0 0 1 1 -3" />
+ <line x1="3" y1="13" x2="7" y2="13" />
+ <line x1="17" y1="13" x2="21" y2="13" />
+ <line x1="12" y1="20" x2="12" y2="14" />
+ <line x1="4" y1="19" x2="7.35" y2="17" />
+ <line x1="20" y1="19" x2="16.65" y2="17" />
+ <line x1="4" y1="7" x2="7.75" y2="9.4" />
+ <line x1="20" y1="7" x2="16.25" y2="9.4" />
+</svg>
diff --git a/src/_icons/calendar-event.svg b/src/_icons/calendar-event.svg
new file mode 100644
index 0000000..4aa8cee
--- /dev/null
+++ b/src/_icons/calendar-event.svg
@@ -0,0 +1,10 @@
+---
+tags: [date, day, plan, schedule, agenda]
+---
+<svg>
+ <rect x="4" y="5" width="16" height="16" rx="2" />
+ <line x1="16" y1="3" x2="16" y2="7" />
+ <line x1="8" y1="3" x2="8" y2="7" />
+ <line x1="4" y1="11" x2="20" y2="11" />
+ <rect x="8" y="15" width="2" height="2" />
+</svg>
diff --git a/src/_icons/directions.svg b/src/_icons/directions.svg
index 4021d8b..9cb450d 100644
--- a/src/_icons/directions.svg
+++ b/src/_icons/directions.svg
@@ -2,8 +2,8 @@
tags: [travel, navigation, discover]
---
<svg>
- <polyline points="8 5 19 5 21 7 19 9 8 9 8 5" />
- <polyline points="14 13 14 17 6 17 4 15 6 13 14 13" />
+ <path d="M9 5h10l2 2l-2 2h-10a1 1 0 0 1 -1 -1v-2a1 1 0 0 1 1 -1" />
+ <path d="M13 13h-7l-2 2l2 2h7a1 1 0 0 0 1 -1v-2a1 1 0 0 0 -1 -1" />
<line x1="12" y1="22" x2="12" y2="17" />
<line x1="12" y1="13" x2="12" y2="9" />
<line x1="12" y1="5" x2="12" y2="3" />
diff --git a/src/_icons/disabled.svg b/src/_icons/disabled.svg
index fd9c72a..157aa3e 100644
--- a/src/_icons/disabled.svg
+++ b/src/_icons/disabled.svg
@@ -5,5 +5,5 @@ tags: [wheelchair]
<circle cx="11" cy="5" r="2" />
<polyline points="11 7 11 15 15 15 19 20" />
<line x1="11" y1="11" x2="16" y2="11" />
- <path d="M7 11.5a5 5 0 1 0 6 7.5" />
+ <path d="M7 11.5a4.97 4.97 0 1 0 6 7.5" />
</svg>
diff --git a/src/_icons/disc.svg b/src/_icons/disc.svg
index a87332b..f09c7b0 100644
--- a/src/_icons/disc.svg
+++ b/src/_icons/disc.svg
@@ -2,6 +2,8 @@
tags: [cd, music, album]
---
<svg>
- <circle cx="12" cy="12" r="3" />
<circle cx="12" cy="12" r="9" />
+ <circle cx="12" cy="12" r="1" />
+ <path d="M7 12a5 5 0 0 1 5 -5" />
+ <path d="M12 17a5 5 0 0 0 5 -5" />
</svg>
diff --git a/src/_icons/edit.svg b/src/_icons/edit.svg
index 1bc8b10..caf3023 100644
--- a/src/_icons/edit.svg
+++ b/src/_icons/edit.svg
@@ -4,4 +4,5 @@ tags: [pencil, change]
<svg>
<path d="M9 7 h-3a2 2 0 0 0 -2 2v9a2 2 0 0 0 2 2h9a2 2 0 0 0 2 -2v-3" />
<path d="M9 15h3l8.5 -8.5a1.5 1.5 0 0 0 -3 -3l-8.5 8.5v3" />
+ <line x1="16" y1="5" x2="19" y2="8" />
</svg>
diff --git a/src/_icons/globe.svg b/src/_icons/globe.svg
new file mode 100644
index 0000000..49ab576
--- /dev/null
+++ b/src/_icons/globe.svg
@@ -0,0 +1,8 @@
+---
+---
+<svg>
+ <circle cx="12" cy="10" r="4" />
+ <path d="M6.75 16a8.015 8.015 0 1 0 9.25 -13" />
+ <line x1="12" y1="18" x2="12" y2="22" />
+ <line x1="8" y1="22" x2="16" y2="22" />
+</svg>
diff --git a/src/_icons/help.svg b/src/_icons/help.svg
new file mode 100644
index 0000000..2a1cb0a
--- /dev/null
+++ b/src/_icons/help.svg
@@ -0,0 +1,7 @@
+---
+---
+<svg>
+ <circle cx="12" cy="12" r="9" />
+ <line x1="12" y1="17" x2="12" y2="17.01" />
+ <path d="M12 13.5a1.5 1.5 0 0 1 1 -1.5a2.6 2.6 0 1 0 -3 -4" />
+</svg>
diff --git a/src/_icons/mug.svg b/src/_icons/mug.svg
new file mode 100644
index 0000000..1525619
--- /dev/null
+++ b/src/_icons/mug.svg
@@ -0,0 +1,6 @@
+---
+---
+<svg>
+ <path d="M5 6h10a1 1 0 0 1 1 1v8a4 4 0 0 1 -4 4h-4a4 4 0 0 1 -4 -4v-8a1 1 0 0 1 1 -1" />
+ <path d="M16 9h2a2 2 0 0 1 2 2v2a2 2 0 0 1 -2 2h-2" />
+</svg>
diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg
new file mode 100644
index 0000000..14f09d0
--- /dev/null
+++ b/src/_icons/palette.svg
@@ -0,0 +1,8 @@
+---
+---
+<svg>
+ <path d="M12 21a9 9 0 1 1 0 -18a9 8 0 0 1 9 8a4.5 4 0 0 1 -4.5 4h-2.5a2 2 0 0 0 -1 3.75a1.3 1.3 0 0 1 -1 2.25" />
+ <circle cx="7.5" cy="10.5" r=".5" />
+ <circle cx="12" cy="7.5" r=".5" />
+ <circle cx="16.5" cy="10.5" r=".5" />
+</svg>
diff --git a/src/_icons/pencil.svg b/src/_icons/pencil.svg
new file mode 100644
index 0000000..9ace377
--- /dev/null
+++ b/src/_icons/pencil.svg
@@ -0,0 +1,6 @@
+---
+---
+<svg>
+ <path d="M4 20h4l10.5 -10.5a1.5 1.5 0 0 0 -4 -4l-10.5 10.5v4" />
+ <line x1="13.5" y1="6.5" x2="17.5" y2="10.5" />
+</svg>
diff --git a/src/_icons/record-mail.svg b/src/_icons/record-mail.svg
new file mode 100644
index 0000000..8ee5886
--- /dev/null
+++ b/src/_icons/record-mail.svg
@@ -0,0 +1,7 @@
+---
+---
+<svg>
+ <circle cx="7" cy="12" r="3" />
+ <circle cx="17" cy="12" r="3" />
+ <line x1="7" y1="15" x2="17" y2="15" />
+</svg>
diff --git a/src/_icons/ruler.svg b/src/_icons/ruler.svg
new file mode 100644
index 0000000..847a84f
--- /dev/null
+++ b/src/_icons/ruler.svg
@@ -0,0 +1,11 @@
+---
+---
+<svg>
+ <path d="M5 4h14a1 1 0 0 1 1 1v5a1 1 0 0 1 -1 1h-7a1 1 0 0 0 -1 1v7a1 1 0 0 1 -1 1h-5a1 1 0 0 1 -1 -1v-14a1 1 0 0 1 1 -1" />
+ <line x1="4" y1="8" x2="6" y2="8" />
+ <line x1="4" y1="12" x2="7" y2="12" />
+ <line x1="4" y1="16" x2="6" y2="16" />
+ <line x1="8" y1="4" x2="8" y2="6" />
+ <polyline points="12 4 12 7 " />
+ <polyline points="16 4 16 6 " />
+</svg>
diff --git a/src/_icons/scissors.svg b/src/_icons/scissors.svg
new file mode 100644
index 0000000..583197c
--- /dev/null
+++ b/src/_icons/scissors.svg
@@ -0,0 +1,8 @@
+---
+---
+<svg>
+ <circle cx="6" cy="7" r="3" />
+ <circle cx="6" cy="17" r="3" />
+ <line x1="8.6" y1="8.6" x2="19" y2="19" />
+ <line x1="8.6" y1="15.4" x2="19" y2="5" />
+</svg>
diff --git a/src/_icons/stack.svg b/src/_icons/stack.svg
new file mode 100644
index 0000000..554507e
--- /dev/null
+++ b/src/_icons/stack.svg
@@ -0,0 +1,7 @@
+---
+---
+<svg>
+ <polyline points="12 4 4 8 12 12 20 8 12 4" />
+ <polyline points="4 12 12 16 20 12" />
+ <polyline points="4 16 12 20 20 16" />
+</svg>
diff --git a/src/_icons/switch-vertical.svg b/src/_icons/switch-vertical.svg
index 165cd54..1c4b7a4 100644
--- a/src/_icons/switch-vertical.svg
+++ b/src/_icons/switch-vertical.svg
@@ -2,10 +2,8 @@
tags: [toggle, up, down, arrows]
---
<svg>
- <g>
<polyline points="3 8 7 4 11 8" />
<line x1="7" y1="4" x2="7" y2="13" />
<polyline points="13 16 17 20 21 16" />
<line x1="17" y1="10" x2="17" y2="20" />
- </g>
</svg>