diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | src/_icons/brand-figma.svg | 8 | ||||
-rw-r--r-- | src/_icons/message-plus.svg | 8 | ||||
-rw-r--r-- | src/_icons/message-report.svg | 8 | ||||
-rw-r--r-- | src/_icons/pin.svg | 7 | ||||
-rw-r--r-- | src/_icons/question-mark.svg | 6 | ||||
-rw-r--r-- | src/_icons/select.svg | 7 | ||||
-rw-r--r-- | src/_icons/subtask.svg | 9 |
10 files changed, 56 insertions, 2 deletions
@@ -11,3 +11,4 @@ github src/_icons/test.svg src/test.svg src/test*.svg +.jekyll-metadata @@ -2,4 +2,4 @@ source "https://rubygems.org" git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } -gem "jekyll", "~> 4.0" +gem "jekyll", "~> 4.1.1" diff --git a/package.json b/package.json index 3f960098..de9c2bbd 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ ], "homepage": "https://github.com/tabler/tabler-icons#readme", "scripts": { - "start": "bundle exec jekyll serve --watch --livereload", + "start": "bundle exec jekyll serve --watch --livereload --trace", "optimize": "gulp optimize", "release": "release-it" }, diff --git a/src/_icons/brand-figma.svg b/src/_icons/brand-figma.svg new file mode 100644 index 00000000..9e98d0cb --- /dev/null +++ b/src/_icons/brand-figma.svg @@ -0,0 +1,8 @@ +--- +category: Brand +--- +<svg> + <circle cx="15" cy="12" r="3" /> + <rect x="6" y="3" width="12" height="6" rx="3" /> + <path d="M9 9a3 3 0 0 0 0 6h3m-3 0a3 3 0 1 0 3 3v-15" /> +</svg> diff --git a/src/_icons/message-plus.svg b/src/_icons/message-plus.svg new file mode 100644 index 00000000..bca68452 --- /dev/null +++ b/src/_icons/message-plus.svg @@ -0,0 +1,8 @@ +--- +tags: [comment, chat, reply, communication, conversation] +--- +<svg> + <path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /> + <line x1="10" y1="11" x2="14" y2="11" /> + <line x1="12" y1="9" x2="12" y2="13" /> +</svg> diff --git a/src/_icons/message-report.svg b/src/_icons/message-report.svg new file mode 100644 index 00000000..6546b209 --- /dev/null +++ b/src/_icons/message-report.svg @@ -0,0 +1,8 @@ +--- +tags: [comment, chat, reply, communication, conversation] +--- +<svg> + <path d="M4 21v-13a3 3 0 0 1 3 -3h10a3 3 0 0 1 3 3v6a3 3 0 0 1 -3 3h-9l-4 4" /> + <line x1="12" y1="8" x2="12" y2="11" /> + <line x1="12" y1="14" x2="12" y2="14.01" /> +</svg> diff --git a/src/_icons/pin.svg b/src/_icons/pin.svg new file mode 100644 index 00000000..5c1b9c35 --- /dev/null +++ b/src/_icons/pin.svg @@ -0,0 +1,7 @@ +--- +--- +<svg> + <line x1="4" y1="20" x2="9.5" y2="14.5" /> + <path d="M6 11l7 7l1 -1l1 -4l4 -4m-4 -4l-4 4l-4 1l-1 1" /> + <line x1="14" y1="4" x2="20" y2="10" /> +</svg> diff --git a/src/_icons/question-mark.svg b/src/_icons/question-mark.svg new file mode 100644 index 00000000..65262e6a --- /dev/null +++ b/src/_icons/question-mark.svg @@ -0,0 +1,6 @@ +--- +--- +<svg> + <path d="M8 8 a3.5 3 0 0 1 3.5 -3h1a3.5 3 0 0 1 3.5 3a3 3 0 0 1 -2 3a3 4 0 0 0 -2 4" /> + <line x1="12" y1="19" x2="12" y2="19.01" /> +</svg> diff --git a/src/_icons/select.svg b/src/_icons/select.svg new file mode 100644 index 00000000..96ecdd0e --- /dev/null +++ b/src/_icons/select.svg @@ -0,0 +1,7 @@ +--- +tags: [input] +--- +<svg> + <rect x="4" y="4" width="16" height="16" rx="2" /> + <path d="M9 11l3 3l3 -3" /> +</svg> diff --git a/src/_icons/subtask.svg b/src/_icons/subtask.svg new file mode 100644 index 00000000..ad43d523 --- /dev/null +++ b/src/_icons/subtask.svg @@ -0,0 +1,9 @@ +--- +--- +<svg> + <line x1="6" y1="9" x2="12" y2="9" /> + <line x1="4" y1="5" x2="8" y2="5" /> + <path d="M6 5v11a1 1 0 0 0 1 1h5" /> + <rect x="12" y="7" width="8" height="4" rx="1" /> + <rect x="12" y="15" width="8" height="4" rx="1" /> +</svg> |