diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..0521922d7
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,4 @@
+version: 2
+updates:
+ - schedule:
+ interval: "weekly"
diff --git a/.github/icons.png b/.github/icons.png
index 0e7d38ede..acb687150 100644
Binary files a/.github/icons.png and b/.github/icons.png differ
diff --git a/.github/icons.svg b/.github/icons.svg
index 1778a7e3b..7d1cff73d 100644
--- a/.github/icons.svg
+++ b/.github/icons.svg
@@ -1,5 +1,5 @@
-
\ No newline at end of file
diff --git a/.github/tabler-icons-1.10.0.png b/.github/tabler-icons-1.10.0.png
new file mode 100644
index 000000000..3b1714c4f
Binary files /dev/null and b/.github/tabler-icons-1.10.0.png differ
diff --git a/.github/tabler-icons-1.10.0.svg b/.github/tabler-icons-1.10.0.svg
new file mode 100644
index 000000000..f9d4bdb4b
--- /dev/null
+++ b/.github/tabler-icons-1.10.0.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.github/tabler-icons-1.8.0.png b/.github/tabler-icons-1.8.0.png
new file mode 100644
index 000000000..035267a53
Binary files /dev/null and b/.github/tabler-icons-1.8.0.png differ
diff --git a/.github/tabler-icons-1.8.0.svg b/.github/tabler-icons-1.8.0.svg
new file mode 100644
index 000000000..283de63b2
--- /dev/null
+++ b/.github/tabler-icons-1.8.0.svg
@@ -0,0 +1,93 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.github/tabler-icons-1.8.1.png b/.github/tabler-icons-1.8.1.png
new file mode 100644
index 000000000..dff93189d
Binary files /dev/null and b/.github/tabler-icons-1.8.1.png differ
diff --git a/.github/tabler-icons-1.8.1.svg b/.github/tabler-icons-1.8.1.svg
new file mode 100644
index 000000000..d805f35b0
--- /dev/null
+++ b/.github/tabler-icons-1.8.1.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.github/tabler-icons-1.9.0.png b/.github/tabler-icons-1.9.0.png
new file mode 100644
index 000000000..d5c37aa17
Binary files /dev/null and b/.github/tabler-icons-1.9.0.png differ
diff --git a/.github/tabler-icons-1.9.0.svg b/.github/tabler-icons-1.9.0.svg
new file mode 100644
index 000000000..7584d990d
--- /dev/null
+++ b/.github/tabler-icons-1.9.0.svg
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index d98fdda29..49fbe00b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,7 @@ packages/*
.DS_Store
icons-outlined/
github
+src/_icons/test.svg
+src/_icons/test*.svg
+src/test.svg
+src/test*.svg
diff --git a/README.md b/README.md
index 96cdf77b8..1f9a86e83 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Tabler Icons
-A set of over 500 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a `2px` stroke.
+A set of over 550 free MIT-licensed high-quality SVG icons for you to use in your web projects. Each icon is designed on a 24x24 grid and a `2px` stroke.
**If you want to support my project and help me grow it, you can [become a sponsor on GitHub](https://github.com/sponsors/codecalm) or just [donate on PayPal](https://paypal.me/codecalm) :)**
@@ -8,7 +8,6 @@ A set of over 500 free MIT-licensed high-quality SVG icons for you to use in you

-
## Installation
```
@@ -26,21 +25,28 @@ All icons are built with SVG, so you can place them as `
`, `background-imag
If you load an icon as an image, you can modify its size using CSS.
```html
-
+
```
### Inline HTML
-You can paste the content of the icon file into your HTML code to display it on the page.
+You can paste the content of the icon file into your HTML code to display it on the page.
```html
-
- ...
+
+ ...
Click me
@@ -63,7 +69,7 @@ Add an icon to be displayed on your page with the following markup (`activity` i
```html
-
+
```
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100755
index 000000000..f6a5fe279
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,10 @@
+version: '2'
+
+services:
+ jekyll:
+ image: jekyll/jekyll:latest
+ command: npm run start
+ ports:
+ - 4001:4001
+ volumes:
+ - .:/srv/jekyll
\ No newline at end of file
diff --git a/gulpfile.js b/gulpfile.js
index 86f4fc99a..43c55a77a 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -490,7 +490,7 @@ gulp.task('changelog-image', function (cb) {
let newIcons = [];
- ret.replace(/[AD]\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function (m, fileName) {
+ ret.replace(/[A]\s+src\/_icons\/([a-z0-9-]+)\.svg/g, function (m, fileName) {
newIcons.push(fileName);
});
diff --git a/iconfont-unicode.json b/iconfont-unicode.json
index fb651f10f..fdf85f52e 100644
--- a/iconfont-unicode.json
+++ b/iconfont-unicode.json
@@ -1 +1 @@
-{"accessible":"eba9","activity":"ea01","ad":"ea02","adjustments":"ea03","alarm":"ea04","alert-circle":"ea05","alert-triangle":"ea06","alien":"ebde","align-center":"ea07","align-justified":"ea08","align-left":"ea09","align-right":"ea0a","anchor":"eb76","aperture":"eb58","apps":"ebb6","archive":"ea0b","arrow-back":"ea0c","arrow-back-up":"eb77","arrow-bar-down":"ea0d","arrow-bar-left":"ea0e","arrow-bar-right":"ea0f","arrow-bar-up":"ea10","arrow-down":"ea16","arrow-down-circle":"ea11","arrow-down-left":"ea13","arrow-down-left-circle":"ea12","arrow-down-right":"ea15","arrow-down-right-circle":"ea14","arrow-forward":"ea17","arrow-forward-up":"eb78","arrow-left":"ea19","arrow-left-circle":"ea18","arrow-narrow-down":"ea1a","arrow-narrow-left":"ea1b","arrow-narrow-right":"ea1c","arrow-narrow-up":"ea1d","arrow-right":"ea1f","arrow-right-circle":"ea1e","arrow-up":"ea25","arrow-up-circle":"ea20","arrow-up-left":"ea22","arrow-up-left-circle":"ea21","arrow-up-right":"ea24","arrow-up-right-circle":"ea23","arrows-diagonal":"ea27","arrows-diagonal-2":"ea26","arrows-horizontal":"eb59","arrows-maximize":"ea28","arrows-minimize":"ea29","arrows-sort":"eb5a","arrows-vertical":"eb5b","artboard":"ea2a","at":"ea2b","atom":"eb79","atom-2":"ebdf","award":"ea2c","backspace":"ea2d","ball":"ebe0","ban":"ea2e","bandage":"eb7a","barcode":"ebc6","basket":"ebe1","battery":"ea34","battery-1":"ea2f","battery-2":"ea30","battery-3":"ea31","battery-4":"ea32","battery-charging":"ea33","bed":"eb5c","bell":"ea35","bike":"ea36","bluetooth":"ea37","bold":"eb7b","bolt":"ea38","book":"ea39","bookmark":"ea3a","border-all":"ea3b","border-bottom":"ea3c","border-horizontal":"ea3d","border-inner":"ea3e","border-left":"ea3f","border-none":"ea40","border-outer":"ea41","border-radius":"eb7c","border-right":"ea42","border-top":"ea43","border-vertical":"ea44","box":"ea45","braces":"ebcc","brackets":"ebcd","briefcase":"ea46","brightness":"eb7f","brightness-down":"eb7d","brightness-up":"eb7e","browser":"ebb7","brush":"ebb8","bucket":"ea47","bug":"ea48","building":"ea4f","building-arch":"ea49","building-bank":"ebe2","building-bridge":"ea4b","building-bridge-2":"ea4a","building-church":"ea4c","building-hospital":"ea4d","building-store":"ea4e","building-warehouse":"ebe3","bulb":"ea51","bulb-off":"ea50","bus":"ebe4","calculator":"eb80","calendar":"ea53","calendar-event":"ea52","calendar-minus":"ebb9","calendar-plus":"ebba","camera":"ea54","car":"ebbb","caret-down":"eb5d","caret-left":"eb5e","caret-right":"eb5f","caret-up":"eb60","cash":"ea55","cast":"ea56","chart-area":"ea58","chart-area-line":"ea57","chart-bar":"ea59","chart-candle":"ea5a","chart-donut":"ea5b","chart-line":"ea5c","chart-pie":"ea5d","check":"ea5e","checkbox":"eba6","checks":"ebaa","chevron-down":"ea5f","chevron-left":"ea60","chevron-right":"ea61","chevron-up":"ea62","chevrons-down":"ea63","chevrons-left":"ea64","chevrons-right":"ea65","chevrons-up":"ea66","chrome":"eb81","circle":"ea6b","circle-check":"ea67","circle-minus":"ea68","circle-plus":"ea69","circle-x":"ea6a","clear-formatting":"ebe5","click":"ebbc","clipboard":"ea6f","clipboard-check":"ea6c","clipboard-list":"ea6d","clipboard-x":"ea6e","clock":"ea70","cloud":"ea76","cloud-download":"ea71","cloud-rain":"ea72","cloud-snow":"ea73","cloud-storm":"ea74","cloud-upload":"ea75","code":"ea77","coin":"eb82","color-picker":"ebe6","color-swatch":"eb61","columns":"eb83","command":"ea78","compass":"ea79","copy":"ea7a","copyright":"ea7b","corner-down-left":"ea7c","corner-down-right":"ea7d","corner-left-down":"ea7e","corner-left-up":"ea7f","corner-right-down":"ea80","corner-right-up":"ea81","corner-up-left":"ea82","corner-up-right":"ea83","credit-card":"ea84","crop":"ea85","currency-bitcoin":"ebab","currency-dollar":"eb84","currency-euro":"eb85","currency-pound":"ebac","currency-rupee":"ebad","currency-yen":"ebae","cut":"ea86","dashboard":"ea87","database":"ea88","device-desktop":"ea89","device-floppy":"eb62","device-gamepad":"eb63","device-laptop":"eb64","device-mobile":"ea8a","device-mobile-vibration":"eb86","device-speaker":"ea8b","device-tablet":"ea8c","device-tv":"ea8d","devices":"eb87","diamond":"eb65","dice":"eb66","directions":"ea8e","disabled":"ea8f","disabled-2":"ebaf","disc":"ea90","discount":"ebbd","dots":"ea95","dots-circle-horizontal":"ea91","dots-diagonal":"ea93","dots-diagonal-2":"ea92","dots-vertical":"ea94","download":"ea96","drag-drop":"eb89","drag-drop-2":"eb88","droplet":"ea97","ear":"ebce","edit":"ea98","egg":"eb8a","emphasis":"ebcf","eraser":"eb8b","exchange":"ebe7","exposure":"eb8c","external-link":"ea99","eye":"ea9a","face-id":"ea9b","file":"eaa4","file-check":"ea9c","file-code":"ebd0","file-download":"ea9d","file-horizontal":"ebb0","file-invoice":"eb67","file-minus":"ea9e","file-music":"ea9f","file-plus":"eaa0","file-shredder":"eaa1","file-text":"eaa2","file-x":"eaa3","filter":"eaa5","fingerprint":"ebd1","firetruck":"ebe8","flag":"eaa6","flask":"ebd2","flip-horizontal":"eaa7","flip-vertical":"eaa8","float-center":"ebb1","float-left":"ebb2","float-right":"ebb3","floppy-disk":"eaa9","focus":"eb8d","focus-2":"ebd3","folder":"eaad","folder-minus":"eaaa","folder-plus":"eaab","folder-x":"eaac","folders":"eaae","forbid":"ebd5","forbid-2":"ebd4","forklift":"ebe9","frame":"eaaf","friends":"eab0","gauge":"eab1","ghost":"eb8e","gift":"eb68","git-branch":"eab2","git-commit":"eab3","git-compare":"eab4","git-fork":"eb8f","git-merge":"eab5","git-pull-request":"eab6","glass":"eab8","glass-full":"eab7","globe":"eab9","grid":"eabb","grid-dots":"eaba","hash":"eabc","headphones":"eabd","headset":"eb90","heart":"eabe","help":"eabf","history":"ebea","home":"eac1","home-2":"eac0","ice-cream":"eac2","id":"eac3","inbox":"eac4","indent-decrease":"eb91","indent-increase":"eb92","infinity":"eb69","info-circle":"eac5","info-square":"eac6","italic":"eb93","key":"eac7","keyboard":"ebd6","language":"ebbe","layers-difference":"eac8","layers-intersect":"eac9","layers-subtract":"eaca","layers-union":"eacb","layout":"eadb","layout-2":"eacc","layout-align-bottom":"eacd","layout-align-center":"eace","layout-align-left":"eacf","layout-align-middle":"ead0","layout-align-right":"ead1","layout-align-top":"ead2","layout-bottombar":"ead3","layout-columns":"ead4","layout-distribute-horizontal":"ead5","layout-distribute-vertical":"ead6","layout-navbar":"ead7","layout-rows":"ead8","layout-sidebar":"eada","layout-sidebar-right":"ead9","lego":"eadc","letter-case":"ebbf","license":"ebc0","lifebuoy":"eadd","line-height":"eb94","link":"eade","list":"eb6b","list-check":"eb6a","live-photo":"eadf","location":"eae0","lock":"eae2","lock-open":"eae1","login":"eba7","logout":"eba8","magnet":"eae3","mail":"eae5","mail-opened":"eae4","man":"eae6","map":"eae9","map-2":"eae7","map-pin":"eae8","math":"ebeb","maximize":"eaea","menu":"eaeb","message":"eaef","message-2":"eaec","message-circle":"eaed","message-dots":"eaee","messages":"eb6c","microphone":"eaf0","minimize":"eaf1","minus":"eaf2","mood-confuzed":"eaf3","mood-happy":"eaf4","mood-neutral":"eaf5","mood-sad":"eaf6","mood-smile":"eaf7","mood-tongue":"eb95","moon":"eaf8","mouse":"eaf9","movie":"eafa","mug":"eafb","music":"eafc","new-section":"ebc1","news":"eafd","note":"eb6d","notebook":"eb96","notes":"eb6e","notification":"eafe","omega":"eb97","outlet":"ebd7","package":"eaff","paint":"eb00","palette":"eb01","paperclip":"eb02","parentheses":"ebd8","parking":"eb03","pencil":"eb04","phone":"eb09","phone-call":"eb05","phone-incoming":"eb06","phone-outgoing":"eb07","phone-pause":"eb08","photo":"eb0a","pillow":"eb98","plane":"eb6f","plane-arrival":"eb99","plane-departure":"eb9a","plug":"ebd9","plus":"eb0b","point":"eb0c","power":"eb0d","presentation":"eb70","printer":"eb0e","prompt":"eb0f","puzzle":"eb10","qrcode":"eb11","record-mail":"eb12","recycle":"eb9b","refresh":"eb13","registered":"eb14","repeat":"eb72","repeat-once":"eb71","replace":"ebc7","rotate":"eb16","rotate-2":"ebb4","rotate-clockwise":"eb15","rotate-clockwise-2":"ebb5","route":"eb17","router":"eb18","rss":"eb19","ruler":"eb1a","scale":"ebc2","scan":"ebc8","scissors":"eb1b","search":"eb1c","selector":"eb1d","send":"eb1e","separator":"ebda","server":"eb1f","settings":"eb20","shape":"eb9c","share":"eb21","shield":"eb24","shield-check":"eb22","shield-x":"eb23","shopping-cart":"eb25","sitemap":"eb9d","slice":"ebdb","slideshow":"ebc9","social":"ebec","sort-ascending":"eb26","sort-descending":"eb27","square":"eb2c","square-check":"eb28","square-minus":"eb29","square-plus":"eb2a","square-x":"eb2b","stack":"eb2d","star":"eb2e","sticker":"eb2f","strikethrough":"eb9e","subscript":"eb9f","sum":"eb73","sun":"eb30","superscript":"eba0","switch":"eb33","switch-horizontal":"eb31","switch-vertical":"eb32","table":"eba1","tag":"eb34","target":"eb35","tax":"ebc3","temperature":"eb38","temperature-celsius":"eb36","temperature-fahrenheit":"eb37","temperature-minus":"ebed","temperature-plus":"ebee","template":"eb39","terminal":"ebdc","terminal-2":"ebef","test-pipe":"eb3a","text-wrap":"ebdd","thumb-down":"eb3b","thumb-up":"eb3c","ticket":"eb3d","tir":"ebf0","toggle-left":"eb3e","toggle-right":"eb3f","tool":"eb40","tools":"ebca","trash":"eb41","trending-down":"eb42","trending-up":"eb43","triangle":"eb44","trophy":"eb45","truck":"ebc4","typography":"ebc5","umbrella":"ebf1","underline":"eba2","unlink":"eb46","upload":"eb47","urgent":"eb48","user":"eb4d","user-check":"eb49","user-minus":"eb4a","user-plus":"eb4b","user-x":"eb4c","users":"ebf2","viewfinder":"eb4e","viewport-narrow":"ebf3","viewport-wide":"ebf4","virus":"eb74","volume":"eb51","volume-2":"eb4f","volume-3":"eb50","wallet":"eb75","wand":"ebcb","wifi":"eb52","wifi-0":"eba3","wifi-1":"eba4","wifi-2":"eba5","woman":"eb53","world":"eb54","x":"eb55","zoom-in":"eb56","zoom-out":"eb57"}
\ No newline at end of file
+{"accessible":"eba9","activity":"ea01","ad":"ea02","adjustments":"ea03","alarm":"ea04","alert-circle":"ea05","alert-triangle":"ea06","alien":"ebde","align-center":"ea07","align-justified":"ea08","align-left":"ea09","align-right":"ea0a","ambulance":"ebf5","anchor":"eb76","aperture":"eb58","apps":"ebb6","archive":"ea0b","arrow-back":"ea0c","arrow-back-up":"eb77","arrow-bar-down":"ea0d","arrow-bar-left":"ea0e","arrow-bar-right":"ea0f","arrow-bar-up":"ea10","arrow-down":"ea16","arrow-down-circle":"ea11","arrow-down-left":"ea13","arrow-down-left-circle":"ea12","arrow-down-right":"ea15","arrow-down-right-circle":"ea14","arrow-forward":"ea17","arrow-forward-up":"eb78","arrow-left":"ea19","arrow-left-circle":"ea18","arrow-narrow-down":"ea1a","arrow-narrow-left":"ea1b","arrow-narrow-right":"ea1c","arrow-narrow-up":"ea1d","arrow-right":"ea1f","arrow-right-circle":"ea1e","arrow-up":"ea25","arrow-up-circle":"ea20","arrow-up-left":"ea22","arrow-up-left-circle":"ea21","arrow-up-right":"ea24","arrow-up-right-circle":"ea23","arrows-diagonal":"ea27","arrows-diagonal-2":"ea26","arrows-horizontal":"eb59","arrows-maximize":"ea28","arrows-minimize":"ea29","arrows-sort":"eb5a","arrows-vertical":"eb5b","artboard":"ea2a","at":"ea2b","atom":"eb79","atom-2":"ebdf","award":"ea2c","backspace":"ea2d","ball-basketball":"ec28","ball-bowling":"ec29","ball-tennis":"ec2a","ball-volleyball":"ec2b","ban":"ea2e","bandage":"eb7a","barcode":"ebc6","basket":"ebe1","battery":"ea34","battery-1":"ea2f","battery-2":"ea30","battery-3":"ea31","battery-4":"ea32","battery-charging":"ea33","bed":"eb5c","bell":"ea35","bike":"ea36","bluetooth":"ea37","bold":"eb7b","bolt":"ea38","book":"ea39","bookmark":"ea3a","border-all":"ea3b","border-bottom":"ea3c","border-horizontal":"ea3d","border-inner":"ea3e","border-left":"ea3f","border-none":"ea40","border-outer":"ea41","border-radius":"eb7c","border-right":"ea42","border-top":"ea43","border-vertical":"ea44","box":"ea45","braces":"ebcc","brackets":"ebcd","brand-android":"ec16","brand-apple":"ec17","brand-chrome":"ec18","brand-dribbble":"ec19","brand-facebook":"ec1a","brand-framer":"ec1b","brand-github":"ec1c","brand-gitlab":"ec1d","brand-google":"ec1f","brand-google-drive":"ec1e","brand-instagram":"ec20","brand-opera":"ec21","brand-paypal":"ec22","brand-safari":"ec23","brand-sketch":"ec24","brand-snapchat":"ec25","brand-telegram":"ec26","brand-twitter":"ec27","briefcase":"ea46","brightness":"eb7f","brightness-down":"eb7d","brightness-up":"eb7e","browser":"ebb7","brush":"ebb8","bucket":"ea47","bug":"ea48","building":"ea4f","building-arch":"ea49","building-bank":"ebe2","building-bridge":"ea4b","building-bridge-2":"ea4a","building-church":"ea4c","building-community":"ebf6","building-hospital":"ea4d","building-pavilon":"ebf7","building-skyscrappers":"ebf8","building-store":"ea4e","building-warehouse":"ebe3","bulb":"ea51","bulb-off":"ea50","bus":"ebe4","calculator":"eb80","calendar":"ea53","calendar-event":"ea52","calendar-minus":"ebb9","calendar-plus":"ebba","camera":"ea54","car":"ebbb","caret-down":"eb5d","caret-left":"eb5e","caret-right":"eb5f","caret-up":"eb60","cash":"ea55","cast":"ea56","chart-area":"ea58","chart-area-line":"ea57","chart-bar":"ea59","chart-candle":"ea5a","chart-donut":"ea5b","chart-line":"ea5c","chart-pie":"ea5d","check":"ea5e","checkbox":"eba6","checks":"ebaa","chevron-down":"ea5f","chevron-left":"ea60","chevron-right":"ea61","chevron-up":"ea62","chevrons-down":"ea63","chevrons-left":"ea64","chevrons-right":"ea65","chevrons-up":"ea66","circle":"ea6b","circle-check":"ea67","circle-minus":"ea68","circle-plus":"ea69","circle-x":"ea6a","clear-formatting":"ebe5","click":"ebbc","clipboard":"ea6f","clipboard-check":"ea6c","clipboard-list":"ea6d","clipboard-x":"ea6e","clock":"ea70","cloud":"ea76","cloud-download":"ea71","cloud-rain":"ea72","cloud-snow":"ea73","cloud-storm":"ea74","cloud-upload":"ea75","code":"ea77","coin":"eb82","color-picker":"ebe6","color-swatch":"eb61","columns":"eb83","command":"ea78","compass":"ea79","copy":"ea7a","copyright":"ea7b","corner-down-left":"ea7c","corner-down-right":"ea7d","corner-left-down":"ea7e","corner-left-up":"ea7f","corner-right-down":"ea80","corner-right-up":"ea81","corner-up-left":"ea82","corner-up-right":"ea83","credit-card":"ea84","crop":"ea85","currency-bitcoin":"ebab","currency-dollar":"eb84","currency-euro":"eb85","currency-pound":"ebac","currency-rupee":"ebad","currency-yen":"ebae","cut":"ea86","dashboard":"ea87","database":"ea88","device-desktop":"ea89","device-floppy":"eb62","device-gamepad":"eb63","device-laptop":"eb64","device-mobile":"ea8a","device-mobile-vibration":"eb86","device-speaker":"ea8b","device-tablet":"ea8c","device-tv":"ea8d","device-watch":"ebf9","devices":"eb87","diamond":"eb65","dice":"eb66","direction":"ebfb","direction-horizontal":"ebfa","directions":"ea8e","disabled":"ea8f","disabled-2":"ebaf","disc":"ea90","discount":"ebbd","dots":"ea95","dots-circle-horizontal":"ea91","dots-diagonal":"ea93","dots-diagonal-2":"ea92","dots-vertical":"ea94","download":"ea96","drag-drop":"eb89","drag-drop-2":"eb88","droplet":"ea97","ear":"ebce","edit":"ea98","egg":"eb8a","emphasis":"ebcf","eraser":"eb8b","exchange":"ebe7","exposure":"eb8c","external-link":"ea99","eye":"ea9a","face-id":"ea9b","file":"eaa4","file-check":"ea9c","file-code":"ebd0","file-download":"ea9d","file-horizontal":"ebb0","file-invoice":"eb67","file-minus":"ea9e","file-music":"ea9f","file-plus":"eaa0","file-shredder":"eaa1","file-text":"eaa2","file-x":"eaa3","filter":"eaa5","fingerprint":"ebd1","firetruck":"ebe8","flag":"eaa6","flame":"ec2c","flask":"ebd2","flip-horizontal":"eaa7","flip-vertical":"eaa8","float-center":"ebb1","float-left":"ebb2","float-right":"ebb3","floppy-disk":"eaa9","focus":"eb8d","focus-2":"ebd3","folder":"eaad","folder-minus":"eaaa","folder-plus":"eaab","folder-x":"eaac","folders":"eaae","forbid":"ebd5","forbid-2":"ebd4","forklift":"ebe9","frame":"eaaf","friends":"eab0","gauge":"eab1","ghost":"eb8e","gift":"eb68","git-branch":"eab2","git-commit":"eab3","git-compare":"eab4","git-fork":"eb8f","git-merge":"eab5","git-pull-request":"eab6","glass":"eab8","glass-full":"eab7","globe":"eab9","grid":"eabb","grid-dots":"eaba","grip-horizontal":"ec00","grip-vertical":"ec01","hand-middle-finger":"ec2d","hand-stop":"ec2e","hash":"eabc","headphones":"eabd","headset":"eb90","heart":"eabe","help":"eabf","hexagon":"ec02","history":"ebea","home":"eac1","home-2":"eac0","ice-cream":"eac2","id":"eac3","inbox":"eac4","indent-decrease":"eb91","indent-increase":"eb92","infinity":"eb69","info-circle":"eac5","info-square":"eac6","italic":"eb93","key":"eac7","keyboard":"ebd6","language":"ebbe","layers-difference":"eac8","layers-intersect":"eac9","layers-subtract":"eaca","layers-union":"eacb","layout":"eadb","layout-2":"eacc","layout-align-bottom":"eacd","layout-align-center":"eace","layout-align-left":"eacf","layout-align-middle":"ead0","layout-align-right":"ead1","layout-align-top":"ead2","layout-bottombar":"ead3","layout-cards":"ec13","layout-columns":"ead4","layout-distribute-horizontal":"ead5","layout-distribute-vertical":"ead6","layout-list":"ec14","layout-navbar":"ead7","layout-rows":"ead8","layout-sidebar":"eada","layout-sidebar-right":"ead9","lego":"eadc","letter-case":"ebbf","license":"ebc0","lifebuoy":"eadd","line-height":"eb94","link":"eade","list":"eb6b","list-check":"eb6a","live-photo":"eadf","location":"eae0","lock":"eae2","lock-open":"eae1","login":"eba7","logout":"eba8","magnet":"eae3","mail":"eae5","mail-opened":"eae4","man":"eae6","map":"eae9","map-2":"eae7","map-pin":"eae8","math":"ebeb","maximize":"eaea","medical-cross":"ec2f","menu":"eaeb","message":"eaef","message-2":"eaec","message-circle":"eaed","message-dots":"eaee","messages":"eb6c","microphone":"eaf0","minimize":"eaf1","minus":"eaf2","mist":"ec30","mood-confuzed":"eaf3","mood-happy":"eaf4","mood-kid":"ec03","mood-neutral":"eaf5","mood-sad":"eaf6","mood-smile":"eaf7","mood-suprised":"ec04","mood-tongue":"eb95","moon":"eaf8","mouse":"eaf9","movie":"eafa","mug":"eafb","music":"eafc","new-section":"ebc1","news":"eafd","note":"eb6d","notebook":"eb96","notes":"eb6e","notification":"eafe","omega":"eb97","outlet":"ebd7","package":"eaff","paint":"eb00","palette":"eb01","paperclip":"eb02","parentheses":"ebd8","parking":"eb03","pencil":"eb04","phone":"eb09","phone-call":"eb05","phone-check":"ec05","phone-incoming":"eb06","phone-outgoing":"eb07","phone-pause":"eb08","phone-plus":"ec06","phone-x":"ec07","photo":"eb0a","pillow":"eb98","plane":"eb6f","plane-arrival":"eb99","plane-departure":"eb9a","planet":"ec08","plug":"ebd9","plus":"eb0b","point":"eb0c","power":"eb0d","presentation":"eb70","printer":"eb0e","prompt":"eb0f","puzzle":"eb10","qrcode":"eb11","record-mail":"eb12","recycle":"eb9b","refresh":"eb13","registered":"eb14","repeat":"eb72","repeat-once":"eb71","replace":"ebc7","rotate":"eb16","rotate-2":"ebb4","rotate-clockwise":"eb15","rotate-clockwise-2":"ebb5","rotate-rectangle":"ec15","route":"eb17","router":"eb18","rss":"eb19","ruler":"eb1a","scale":"ebc2","scan":"ebc8","scissors":"eb1b","search":"eb1c","selector":"eb1d","send":"eb1e","separator":"ebda","server":"eb1f","servicemark":"ec09","settings":"eb20","shape":"eb9c","share":"eb21","shield":"eb24","shield-check":"eb22","shield-x":"eb23","shirt":"ec0a","shopping-cart":"eb25","sitemap":"eb9d","slice":"ebdb","slideshow":"ebc9","snowflake":"ec0b","social":"ebec","sort-ascending":"eb26","sort-descending":"eb27","space":"ec0c","square":"eb2c","square-check":"eb28","square-minus":"eb29","square-plus":"eb2a","square-x":"eb2b","stack":"eb2d","star":"eb2e","sticker":"eb2f","strikethrough":"eb9e","subscript":"eb9f","sum":"eb73","sun":"eb30","sunset":"ec31","sunshine":"ec32","superscript":"eba0","switch":"eb33","switch-horizontal":"eb31","switch-vertical":"eb32","table":"eba1","tag":"eb34","target":"eb35","tax":"ebc3","temperature":"eb38","temperature-celsius":"eb36","temperature-fahrenheit":"eb37","temperature-minus":"ebed","temperature-plus":"ebee","template":"eb39","terminal":"ebdc","terminal-2":"ebef","test":"ec33","test-pipe":"eb3a","text-wrap":"ebdd","thumb-down":"eb3b","thumb-up":"eb3c","ticket":"eb3d","tir":"ebf0","toggle-left":"eb3e","toggle-right":"eb3f","tool":"eb40","tools":"ebca","tractor":"ec0d","trademark":"ec0e","traffic-cone":"ec0f","trash":"eb41","trees":"ec10","trending-down":"eb42","trending-up":"eb43","triangle":"eb44","trophy":"eb45","truck":"ebc4","typography":"ebc5","umbrella":"ebf1","underline":"eba2","unlink":"eb46","upload":"eb47","urgent":"eb48","user":"eb4d","user-check":"eb49","user-exclamation":"ec12","user-minus":"eb4a","user-plus":"eb4b","user-x":"eb4c","users":"ebf2","viewfinder":"eb4e","viewport-narrow":"ebf3","viewport-wide":"ebf4","virus":"eb74","volume":"eb51","volume-2":"eb4f","volume-3":"eb50","wallet":"eb75","wand":"ebcb","wifi":"eb52","wifi-0":"eba3","wifi-1":"eba4","wifi-2":"eba5","wind":"ec34","woman":"eb53","world":"eb54","x":"eb55","yin-yang":"ec35","zoom-in":"eb56","zoom-out":"eb57"}
\ No newline at end of file
diff --git a/iconfont/fonts/tabler-icons.eot b/iconfont/fonts/tabler-icons.eot
index 6cf895a63..ffe6d15b6 100644
Binary files a/iconfont/fonts/tabler-icons.eot and b/iconfont/fonts/tabler-icons.eot differ
diff --git a/iconfont/fonts/tabler-icons.ttf b/iconfont/fonts/tabler-icons.ttf
index 2baaa6012..672617d83 100644
Binary files a/iconfont/fonts/tabler-icons.ttf and b/iconfont/fonts/tabler-icons.ttf differ
diff --git a/iconfont/fonts/tabler-icons.woff b/iconfont/fonts/tabler-icons.woff
index a3a7ae26f..bde0612a1 100644
Binary files a/iconfont/fonts/tabler-icons.woff and b/iconfont/fonts/tabler-icons.woff differ
diff --git a/iconfont/fonts/tabler-icons.woff2 b/iconfont/fonts/tabler-icons.woff2
index 9238b9911..68673f1c5 100644
Binary files a/iconfont/fonts/tabler-icons.woff2 and b/iconfont/fonts/tabler-icons.woff2 differ
diff --git a/iconfont/tabler-icons.css b/iconfont/tabler-icons.css
index d9c7a9545..f16b4ae38 100644
--- a/iconfont/tabler-icons.css
+++ b/iconfont/tabler-icons.css
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*!
- * Tabler Icons 1.7.0 by tabler - https://tabler.io
+ * Tabler Icons 1.10.0 by tabler - https://tabler.io
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
*/
@font-face {
@@ -72,6 +72,10 @@
content: "";
}
+.ti-ambulance:before {
+ content: "";
+}
+
.ti-anchor:before {
content: "";
}
@@ -252,8 +256,20 @@
content: "";
}
-.ti-ball:before {
- content: "";
+.ti-ball-basketball:before {
+ content: "";
+}
+
+.ti-ball-bowling:before {
+ content: "";
+}
+
+.ti-ball-tennis:before {
+ content: "";
+}
+
+.ti-ball-volleyball:before {
+ content: "";
}
.ti-ban:before {
@@ -384,6 +400,78 @@
content: "";
}
+.ti-brand-android:before {
+ content: "";
+}
+
+.ti-brand-apple:before {
+ content: "";
+}
+
+.ti-brand-chrome:before {
+ content: "";
+}
+
+.ti-brand-dribbble:before {
+ content: "";
+}
+
+.ti-brand-facebook:before {
+ content: "";
+}
+
+.ti-brand-framer:before {
+ content: "";
+}
+
+.ti-brand-github:before {
+ content: "";
+}
+
+.ti-brand-gitlab:before {
+ content: "";
+}
+
+.ti-brand-google:before {
+ content: "";
+}
+
+.ti-brand-google-drive:before {
+ content: "";
+}
+
+.ti-brand-instagram:before {
+ content: "";
+}
+
+.ti-brand-opera:before {
+ content: "";
+}
+
+.ti-brand-paypal:before {
+ content: "";
+}
+
+.ti-brand-safari:before {
+ content: "";
+}
+
+.ti-brand-sketch:before {
+ content: "";
+}
+
+.ti-brand-snapchat:before {
+ content: "";
+}
+
+.ti-brand-telegram:before {
+ content: "";
+}
+
+.ti-brand-twitter:before {
+ content: "";
+}
+
.ti-briefcase:before {
content: "";
}
@@ -440,10 +528,22 @@
content: "";
}
+.ti-building-community:before {
+ content: "";
+}
+
.ti-building-hospital:before {
content: "";
}
+.ti-building-pavilon:before {
+ content: "";
+}
+
+.ti-building-skyscrappers:before {
+ content: "";
+}
+
.ti-building-store:before {
content: "";
}
@@ -588,10 +688,6 @@
content: "";
}
-.ti-chrome:before {
- content: "";
-}
-
.ti-circle:before {
content: "";
}
@@ -812,6 +908,10 @@
content: "";
}
+.ti-device-watch:before {
+ content: "";
+}
+
.ti-devices:before {
content: "";
}
@@ -824,6 +924,14 @@
content: "";
}
+.ti-direction:before {
+ content: "";
+}
+
+.ti-direction-horizontal:before {
+ content: "";
+}
+
.ti-directions:before {
content: "";
}
@@ -984,6 +1092,10 @@
content: "";
}
+.ti-flame:before {
+ content: "";
+}
+
.ti-flask:before {
content: "";
}
@@ -1116,6 +1228,22 @@
content: "";
}
+.ti-grip-horizontal:before {
+ content: "";
+}
+
+.ti-grip-vertical:before {
+ content: "";
+}
+
+.ti-hand-middle-finger:before {
+ content: "";
+}
+
+.ti-hand-stop:before {
+ content: "";
+}
+
.ti-hash:before {
content: "";
}
@@ -1136,6 +1264,10 @@
content: "";
}
+.ti-hexagon:before {
+ content: "";
+}
+
.ti-history:before {
content: "";
}
@@ -1248,6 +1380,10 @@
content: "";
}
+.ti-layout-cards:before {
+ content: "";
+}
+
.ti-layout-columns:before {
content: "";
}
@@ -1260,6 +1396,10 @@
content: "";
}
+.ti-layout-list:before {
+ content: "";
+}
+
.ti-layout-navbar:before {
content: "";
}
@@ -1368,6 +1508,10 @@
content: "";
}
+.ti-medical-cross:before {
+ content: "";
+}
+
.ti-menu:before {
content: "";
}
@@ -1404,6 +1548,10 @@
content: "";
}
+.ti-mist:before {
+ content: "";
+}
+
.ti-mood-confuzed:before {
content: "";
}
@@ -1412,6 +1560,10 @@
content: "";
}
+.ti-mood-kid:before {
+ content: "";
+}
+
.ti-mood-neutral:before {
content: "";
}
@@ -1424,6 +1576,10 @@
content: "";
}
+.ti-mood-suprised:before {
+ content: "";
+}
+
.ti-mood-tongue:before {
content: "";
}
@@ -1516,6 +1672,10 @@
content: "";
}
+.ti-phone-check:before {
+ content: "";
+}
+
.ti-phone-incoming:before {
content: "";
}
@@ -1528,6 +1688,14 @@
content: "";
}
+.ti-phone-plus:before {
+ content: "";
+}
+
+.ti-phone-x:before {
+ content: "";
+}
+
.ti-photo:before {
content: "";
}
@@ -1548,6 +1716,10 @@
content: "";
}
+.ti-planet:before {
+ content: "";
+}
+
.ti-plug:before {
content: "";
}
@@ -1628,6 +1800,10 @@
content: "";
}
+.ti-rotate-rectangle:before {
+ content: "";
+}
+
.ti-route:before {
content: "";
}
@@ -1676,6 +1852,10 @@
content: "";
}
+.ti-servicemark:before {
+ content: "";
+}
+
.ti-settings:before {
content: "";
}
@@ -1700,6 +1880,10 @@
content: "";
}
+.ti-shirt:before {
+ content: "";
+}
+
.ti-shopping-cart:before {
content: "";
}
@@ -1716,6 +1900,10 @@
content: "";
}
+.ti-snowflake:before {
+ content: "";
+}
+
.ti-social:before {
content: "";
}
@@ -1728,6 +1916,10 @@
content: "";
}
+.ti-space:before {
+ content: "";
+}
+
.ti-square:before {
content: "";
}
@@ -1776,6 +1968,14 @@
content: "";
}
+.ti-sunset:before {
+ content: "";
+}
+
+.ti-sunshine:before {
+ content: "";
+}
+
.ti-superscript:before {
content: "";
}
@@ -1840,6 +2040,10 @@
content: "";
}
+.ti-test:before {
+ content: "";
+}
+
.ti-test-pipe:before {
content: "";
}
@@ -1880,10 +2084,26 @@
content: "";
}
+.ti-tractor:before {
+ content: "";
+}
+
+.ti-trademark:before {
+ content: "";
+}
+
+.ti-traffic-cone:before {
+ content: "";
+}
+
.ti-trash:before {
content: "";
}
+.ti-trees:before {
+ content: "";
+}
+
.ti-trending-down:before {
content: "";
}
@@ -1936,6 +2156,10 @@
content: "";
}
+.ti-user-exclamation:before {
+ content: "";
+}
+
.ti-user-minus:before {
content: "";
}
@@ -2004,6 +2228,10 @@
content: "";
}
+.ti-wind:before {
+ content: "";
+}
+
.ti-woman:before {
content: "";
}
@@ -2016,6 +2244,10 @@
content: "";
}
+.ti-yin-yang:before {
+ content: "";
+}
+
.ti-zoom-in:before {
content: "";
}
diff --git a/iconfont/tabler-icons.html b/iconfont/tabler-icons.html
index 6e8b11606..1ab5e70bb 100644
--- a/iconfont/tabler-icons.html
+++ b/iconfont/tabler-icons.html
@@ -5,7 +5,7 @@
-
Tabler Icons - version 1.7.0
+ Tabler Icons - version 1.10.0
@@ -109,7 +109,7 @@
Tabler Icons
- version 1.7.0
+ version 1.10.0
@@ -227,6 +227,15 @@
+
+
+
ambulance
+
+ ti ti-ambulance
+ \ebf5
+
+
+
anchor
@@ -633,11 +642,38 @@
-
-
ball
+
+
ball-basketball
- ti ti-ball
- \ebe0
+ ti ti-ball-basketball
+ \ec28
+
+
+
+
+
+
ball-bowling
+
+ ti ti-ball-bowling
+ \ec29
+
+
+
+
+
+
ball-tennis
+
+ ti ti-ball-tennis
+ \ec2a
+
+
+
+
+
+
ball-volleyball
+
+ ti ti-ball-volleyball
+ \ec2b
@@ -929,6 +965,168 @@
+
+
+
brand-android
+
+ ti ti-brand-android
+ \ec16
+
+
+
+
+
+
brand-apple
+
+ ti ti-brand-apple
+ \ec17
+
+
+
+
+
+
brand-chrome
+
+ ti ti-brand-chrome
+ \ec18
+
+
+
+
+
+
brand-dribbble
+
+ ti ti-brand-dribbble
+ \ec19
+
+
+
+
+
+
brand-facebook
+
+ ti ti-brand-facebook
+ \ec1a
+
+
+
+
+
+
brand-framer
+
+ ti ti-brand-framer
+ \ec1b
+
+
+
+
+
+
brand-github
+
+ ti ti-brand-github
+ \ec1c
+
+
+
+
+
+
brand-gitlab
+
+ ti ti-brand-gitlab
+ \ec1d
+
+
+
+
+
+
brand-google
+
+ ti ti-brand-google
+ \ec1f
+
+
+
+
+
+
brand-google-drive
+
+ ti ti-brand-google-drive
+ \ec1e
+
+
+
+
+
+
brand-instagram
+
+ ti ti-brand-instagram
+ \ec20
+
+
+
+
+
+
brand-opera
+
+ ti ti-brand-opera
+ \ec21
+
+
+
+
+
+
brand-paypal
+
+ ti ti-brand-paypal
+ \ec22
+
+
+
+
+
+
brand-safari
+
+ ti ti-brand-safari
+ \ec23
+
+
+
+
+
+
brand-sketch
+
+ ti ti-brand-sketch
+ \ec24
+
+
+
+
+
+
brand-snapchat
+
+ ti ti-brand-snapchat
+ \ec25
+
+
+
+
+
+
brand-telegram
+
+ ti ti-brand-telegram
+ \ec26
+
+
+
+
+
+
brand-twitter
+
+ ti ti-brand-twitter
+ \ec27
+
+
+
briefcase
@@ -1055,6 +1253,15 @@
+
+
+
building-community
+
+ ti ti-building-community
+ \ebf6
+
+
+
building-hospital
@@ -1064,6 +1271,24 @@
+
+
+
building-pavilon
+
+ ti ti-building-pavilon
+ \ebf7
+
+
+
+
+
+
building-skyscrappers
+
+ ti ti-building-skyscrappers
+ \ebf8
+
+
+
building-store
@@ -1388,15 +1613,6 @@
-
-
-
chrome
-
- ti ti-chrome
- \eb81
-
-
-
circle
@@ -1892,6 +2108,15 @@
+
+
+
device-watch
+
+ ti ti-device-watch
+ \ebf9
+
+
+
devices
@@ -1919,6 +2144,24 @@
+
+
+
direction
+
+ ti ti-direction
+ \ebfb
+
+
+
+
+
+
direction-horizontal
+
+ ti ti-direction-horizontal
+ \ebfa
+
+
+
directions
@@ -2279,6 +2522,15 @@
+
+
+
flame
+
+ ti ti-flame
+ \ec2c
+
+
+
flask
@@ -2576,6 +2828,42 @@
+
+
+
grip-horizontal
+
+ ti ti-grip-horizontal
+ \ec00
+
+
+
+
+
+
grip-vertical
+
+ ti ti-grip-vertical
+ \ec01
+
+
+
+
+
+
hand-middle-finger
+
+ ti ti-hand-middle-finger
+ \ec2d
+
+
+
+
+
+
hand-stop
+
+ ti ti-hand-stop
+ \ec2e
+
+
+
hash
@@ -2621,6 +2909,15 @@
+
+
+
hexagon
+
+ ti ti-hexagon
+ \ec02
+
+
+
history
@@ -2873,6 +3170,15 @@
+
+
+
layout-cards
+
+ ti ti-layout-cards
+ \ec13
+
+
+
layout-columns
@@ -2900,6 +3206,15 @@
+
+
+
layout-list
+
+ ti ti-layout-list
+ \ec14
+
+
+
layout-navbar
@@ -3143,6 +3458,15 @@
+
+
+
medical-cross
+
+ ti ti-medical-cross
+ \ec2f
+
+
+
menu
@@ -3224,6 +3548,15 @@
+
+
+
mist
+
+ ti ti-mist
+ \ec30
+
+
+
mood-confuzed
@@ -3242,6 +3575,15 @@
+
+
+
mood-kid
+
+ ti ti-mood-kid
+ \ec03
+
+
+
mood-neutral
@@ -3269,6 +3611,15 @@
+
+
+
mood-suprised
+
+ ti ti-mood-suprised
+ \ec04
+
+
+
mood-tongue
@@ -3476,6 +3827,15 @@
+
+
+
phone-check
+
+ ti ti-phone-check
+ \ec05
+
+
+
phone-incoming
@@ -3503,6 +3863,24 @@
+
+
+
phone-plus
+
+ ti ti-phone-plus
+ \ec06
+
+
+
+
+
+
phone-x
+
+ ti ti-phone-x
+ \ec07
+
+
+
photo
@@ -3548,6 +3926,15 @@
+
+
+
planet
+
+ ti ti-planet
+ \ec08
+
+
+
plug
@@ -3728,6 +4115,15 @@
+
+
+
rotate-rectangle
+
+ ti ti-rotate-rectangle
+ \ec15
+
+
+
route
@@ -3836,6 +4232,15 @@
+
+
+
servicemark
+
+ ti ti-servicemark
+ \ec09
+
+
+
settings
@@ -3890,6 +4295,15 @@
+
+
+
shirt
+
+ ti ti-shirt
+ \ec0a
+
+
+
shopping-cart
@@ -3926,6 +4340,15 @@
+
+
+
snowflake
+
+ ti ti-snowflake
+ \ec0b
+
+
+
social
@@ -3953,6 +4376,15 @@
+
+
+
space
+
+ ti ti-space
+ \ec0c
+
+
+
square
@@ -4061,6 +4493,24 @@
+
+
+
sunset
+
+ ti ti-sunset
+ \ec31
+
+
+
+
+
+
sunshine
+
+ ti ti-sunshine
+ \ec32
+
+
+
superscript
@@ -4205,6 +4655,15 @@
+
+
+
test
+
+ ti ti-test
+ \ec33
+
+
+
test-pipe
@@ -4295,6 +4754,33 @@
+
+
+
tractor
+
+ ti ti-tractor
+ \ec0d
+
+
+
+
+
+
trademark
+
+ ti ti-trademark
+ \ec0e
+
+
+
+
+
+
traffic-cone
+
+ ti ti-traffic-cone
+ \ec0f
+
+
+
trash
@@ -4304,6 +4790,15 @@
+
+
+
trees
+
+ ti ti-trees
+ \ec10
+
+
+
trending-down
@@ -4421,6 +4916,15 @@
+
+
+
user-exclamation
+
+ ti ti-user-exclamation
+ \ec12
+
+
+
user-minus
@@ -4574,6 +5078,15 @@
+
+
+
wind
+
+ ti ti-wind
+ \ec34
+
+
+
woman
@@ -4601,6 +5114,15 @@
+
+
+
yin-yang
+
+ ti ti-yin-yang
+ \ec35
+
+
+
zoom-in
diff --git a/iconfont/tabler-icons.min.css b/iconfont/tabler-icons.min.css
index 5600289b5..0b1c1b5b5 100644
--- a/iconfont/tabler-icons.min.css
+++ b/iconfont/tabler-icons.min.css
@@ -1,4 +1,4 @@
@charset "UTF-8";/*!
- * Tabler Icons 1.7.0 by tabler - https://tabler.io
+ * Tabler Icons 1.10.0 by tabler - https://tabler.io
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
- */@font-face{font-family:tabler-icons;font-style:normal;font-weight:400;src:url(fonts/tabler-icons.eot);src:url(fonts/tabler-icons.eot?#iefix) format("embedded-opentype"),url(fonts/tabler-icons.woff2) format("woff2"),url(fonts/tabler-icons.woff) format("woff"),url(fonts/tabler-icons.ttf) format("truetype")}.ti{font-family:tabler-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-accessible:before{content:""}.ti-activity:before{content:""}.ti-ad:before{content:""}.ti-adjustments:before{content:""}.ti-alarm:before{content:""}.ti-alert-circle:before{content:""}.ti-alert-triangle:before{content:""}.ti-alien:before{content:""}.ti-align-center:before{content:""}.ti-align-justified:before{content:""}.ti-align-left:before{content:""}.ti-align-right:before{content:""}.ti-anchor:before{content:""}.ti-aperture:before{content:""}.ti-apps:before{content:""}.ti-archive:before{content:""}.ti-arrow-back:before{content:""}.ti-arrow-back-up:before{content:""}.ti-arrow-bar-down:before{content:""}.ti-arrow-bar-left:before{content:""}.ti-arrow-bar-right:before{content:""}.ti-arrow-bar-up:before{content:""}.ti-arrow-down:before{content:""}.ti-arrow-down-circle:before{content:""}.ti-arrow-down-left:before{content:""}.ti-arrow-down-left-circle:before{content:""}.ti-arrow-down-right:before{content:""}.ti-arrow-down-right-circle:before{content:""}.ti-arrow-forward:before{content:""}.ti-arrow-forward-up:before{content:""}.ti-arrow-left:before{content:""}.ti-arrow-left-circle:before{content:""}.ti-arrow-narrow-down:before{content:""}.ti-arrow-narrow-left:before{content:""}.ti-arrow-narrow-right:before{content:""}.ti-arrow-narrow-up:before{content:""}.ti-arrow-right:before{content:""}.ti-arrow-right-circle:before{content:""}.ti-arrow-up:before{content:""}.ti-arrow-up-circle:before{content:""}.ti-arrow-up-left:before{content:""}.ti-arrow-up-left-circle:before{content:""}.ti-arrow-up-right:before{content:""}.ti-arrow-up-right-circle:before{content:""}.ti-arrows-diagonal:before{content:""}.ti-arrows-diagonal-2:before{content:""}.ti-arrows-horizontal:before{content:""}.ti-arrows-maximize:before{content:""}.ti-arrows-minimize:before{content:""}.ti-arrows-sort:before{content:""}.ti-arrows-vertical:before{content:""}.ti-artboard:before{content:""}.ti-at:before{content:""}.ti-atom:before{content:""}.ti-atom-2:before{content:""}.ti-award:before{content:""}.ti-backspace:before{content:""}.ti-ball:before{content:""}.ti-ban:before{content:""}.ti-bandage:before{content:""}.ti-barcode:before{content:""}.ti-basket:before{content:""}.ti-battery:before{content:""}.ti-battery-1:before{content:""}.ti-battery-2:before{content:""}.ti-battery-3:before{content:""}.ti-battery-4:before{content:""}.ti-battery-charging:before{content:""}.ti-bed:before{content:""}.ti-bell:before{content:""}.ti-bike:before{content:""}.ti-bluetooth:before{content:""}.ti-bold:before{content:""}.ti-bolt:before{content:""}.ti-book:before{content:""}.ti-bookmark:before{content:""}.ti-border-all:before{content:""}.ti-border-bottom:before{content:""}.ti-border-horizontal:before{content:""}.ti-border-inner:before{content:""}.ti-border-left:before{content:""}.ti-border-none:before{content:""}.ti-border-outer:before{content:""}.ti-border-radius:before{content:""}.ti-border-right:before{content:""}.ti-border-top:before{content:""}.ti-border-vertical:before{content:""}.ti-box:before{content:""}.ti-braces:before{content:""}.ti-brackets:before{content:""}.ti-briefcase:before{content:""}.ti-brightness:before{content:""}.ti-brightness-down:before{content:""}.ti-brightness-up:before{content:""}.ti-browser:before{content:""}.ti-brush:before{content:""}.ti-bucket:before{content:""}.ti-bug:before{content:""}.ti-building:before{content:""}.ti-building-arch:before{content:""}.ti-building-bank:before{content:""}.ti-building-bridge:before{content:""}.ti-building-bridge-2:before{content:""}.ti-building-church:before{content:""}.ti-building-hospital:before{content:""}.ti-building-store:before{content:""}.ti-building-warehouse:before{content:""}.ti-bulb:before{content:""}.ti-bulb-off:before{content:""}.ti-bus:before{content:""}.ti-calculator:before{content:""}.ti-calendar:before{content:""}.ti-calendar-event:before{content:""}.ti-calendar-minus:before{content:""}.ti-calendar-plus:before{content:""}.ti-camera:before{content:""}.ti-car:before{content:""}.ti-caret-down:before{content:""}.ti-caret-left:before{content:""}.ti-caret-right:before{content:""}.ti-caret-up:before{content:""}.ti-cash:before{content:""}.ti-cast:before{content:""}.ti-chart-area:before{content:""}.ti-chart-area-line:before{content:""}.ti-chart-bar:before{content:""}.ti-chart-candle:before{content:""}.ti-chart-donut:before{content:""}.ti-chart-line:before{content:""}.ti-chart-pie:before{content:""}.ti-check:before{content:""}.ti-checkbox:before{content:""}.ti-checks:before{content:""}.ti-chevron-down:before{content:""}.ti-chevron-left:before{content:""}.ti-chevron-right:before{content:""}.ti-chevron-up:before{content:""}.ti-chevrons-down:before{content:""}.ti-chevrons-left:before{content:""}.ti-chevrons-right:before{content:""}.ti-chevrons-up:before{content:""}.ti-chrome:before{content:""}.ti-circle:before{content:""}.ti-circle-check:before{content:""}.ti-circle-minus:before{content:""}.ti-circle-plus:before{content:""}.ti-circle-x:before{content:""}.ti-clear-formatting:before{content:""}.ti-click:before{content:""}.ti-clipboard:before{content:""}.ti-clipboard-check:before{content:""}.ti-clipboard-list:before{content:""}.ti-clipboard-x:before{content:""}.ti-clock:before{content:""}.ti-cloud:before{content:""}.ti-cloud-download:before{content:""}.ti-cloud-rain:before{content:""}.ti-cloud-snow:before{content:""}.ti-cloud-storm:before{content:""}.ti-cloud-upload:before{content:""}.ti-code:before{content:""}.ti-coin:before{content:""}.ti-color-picker:before{content:""}.ti-color-swatch:before{content:""}.ti-columns:before{content:""}.ti-command:before{content:""}.ti-compass:before{content:""}.ti-copy:before{content:""}.ti-copyright:before{content:""}.ti-corner-down-left:before{content:""}.ti-corner-down-right:before{content:""}.ti-corner-left-down:before{content:""}.ti-corner-left-up:before{content:""}.ti-corner-right-down:before{content:""}.ti-corner-right-up:before{content:""}.ti-corner-up-left:before{content:""}.ti-corner-up-right:before{content:""}.ti-credit-card:before{content:""}.ti-crop:before{content:""}.ti-currency-bitcoin:before{content:""}.ti-currency-dollar:before{content:""}.ti-currency-euro:before{content:""}.ti-currency-pound:before{content:""}.ti-currency-rupee:before{content:""}.ti-currency-yen:before{content:""}.ti-cut:before{content:""}.ti-dashboard:before{content:""}.ti-database:before{content:""}.ti-device-desktop:before{content:""}.ti-device-floppy:before{content:""}.ti-device-gamepad:before{content:""}.ti-device-laptop:before{content:""}.ti-device-mobile:before{content:""}.ti-device-mobile-vibration:before{content:""}.ti-device-speaker:before{content:""}.ti-device-tablet:before{content:""}.ti-device-tv:before{content:""}.ti-devices:before{content:""}.ti-diamond:before{content:""}.ti-dice:before{content:""}.ti-directions:before{content:""}.ti-disabled:before{content:""}.ti-disabled-2:before{content:""}.ti-disc:before{content:""}.ti-discount:before{content:""}.ti-dots:before{content:""}.ti-dots-circle-horizontal:before{content:""}.ti-dots-diagonal:before{content:""}.ti-dots-diagonal-2:before{content:""}.ti-dots-vertical:before{content:""}.ti-download:before{content:""}.ti-drag-drop:before{content:""}.ti-drag-drop-2:before{content:""}.ti-droplet:before{content:""}.ti-ear:before{content:""}.ti-edit:before{content:""}.ti-egg:before{content:""}.ti-emphasis:before{content:""}.ti-eraser:before{content:""}.ti-exchange:before{content:""}.ti-exposure:before{content:""}.ti-external-link:before{content:""}.ti-eye:before{content:""}.ti-face-id:before{content:""}.ti-file:before{content:""}.ti-file-check:before{content:""}.ti-file-code:before{content:""}.ti-file-download:before{content:""}.ti-file-horizontal:before{content:""}.ti-file-invoice:before{content:""}.ti-file-minus:before{content:""}.ti-file-music:before{content:""}.ti-file-plus:before{content:""}.ti-file-shredder:before{content:""}.ti-file-text:before{content:""}.ti-file-x:before{content:""}.ti-filter:before{content:""}.ti-fingerprint:before{content:""}.ti-firetruck:before{content:""}.ti-flag:before{content:""}.ti-flask:before{content:""}.ti-flip-horizontal:before{content:""}.ti-flip-vertical:before{content:""}.ti-float-center:before{content:""}.ti-float-left:before{content:""}.ti-float-right:before{content:""}.ti-floppy-disk:before{content:""}.ti-focus:before{content:""}.ti-focus-2:before{content:""}.ti-folder:before{content:""}.ti-folder-minus:before{content:""}.ti-folder-plus:before{content:""}.ti-folder-x:before{content:""}.ti-folders:before{content:""}.ti-forbid:before{content:""}.ti-forbid-2:before{content:""}.ti-forklift:before{content:""}.ti-frame:before{content:""}.ti-friends:before{content:""}.ti-gauge:before{content:""}.ti-ghost:before{content:""}.ti-gift:before{content:""}.ti-git-branch:before{content:""}.ti-git-commit:before{content:""}.ti-git-compare:before{content:""}.ti-git-fork:before{content:""}.ti-git-merge:before{content:""}.ti-git-pull-request:before{content:""}.ti-glass:before{content:""}.ti-glass-full:before{content:""}.ti-globe:before{content:""}.ti-grid:before{content:""}.ti-grid-dots:before{content:""}.ti-hash:before{content:""}.ti-headphones:before{content:""}.ti-headset:before{content:""}.ti-heart:before{content:""}.ti-help:before{content:""}.ti-history:before{content:""}.ti-home:before{content:""}.ti-home-2:before{content:""}.ti-ice-cream:before{content:""}.ti-id:before{content:""}.ti-inbox:before{content:""}.ti-indent-decrease:before{content:""}.ti-indent-increase:before{content:""}.ti-infinity:before{content:""}.ti-info-circle:before{content:""}.ti-info-square:before{content:""}.ti-italic:before{content:""}.ti-key:before{content:""}.ti-keyboard:before{content:""}.ti-language:before{content:""}.ti-layers-difference:before{content:""}.ti-layers-intersect:before{content:""}.ti-layers-subtract:before{content:""}.ti-layers-union:before{content:""}.ti-layout:before{content:""}.ti-layout-2:before{content:""}.ti-layout-align-bottom:before{content:""}.ti-layout-align-center:before{content:""}.ti-layout-align-left:before{content:""}.ti-layout-align-middle:before{content:""}.ti-layout-align-right:before{content:""}.ti-layout-align-top:before{content:""}.ti-layout-bottombar:before{content:""}.ti-layout-columns:before{content:""}.ti-layout-distribute-horizontal:before{content:""}.ti-layout-distribute-vertical:before{content:""}.ti-layout-navbar:before{content:""}.ti-layout-rows:before{content:""}.ti-layout-sidebar:before{content:""}.ti-layout-sidebar-right:before{content:""}.ti-lego:before{content:""}.ti-letter-case:before{content:""}.ti-license:before{content:""}.ti-lifebuoy:before{content:""}.ti-line-height:before{content:""}.ti-link:before{content:""}.ti-list:before{content:""}.ti-list-check:before{content:""}.ti-live-photo:before{content:""}.ti-location:before{content:""}.ti-lock:before{content:""}.ti-lock-open:before{content:""}.ti-login:before{content:""}.ti-logout:before{content:""}.ti-magnet:before{content:""}.ti-mail:before{content:""}.ti-mail-opened:before{content:""}.ti-man:before{content:""}.ti-map:before{content:""}.ti-map-2:before{content:""}.ti-map-pin:before{content:""}.ti-math:before{content:""}.ti-maximize:before{content:""}.ti-menu:before{content:""}.ti-message:before{content:""}.ti-message-2:before{content:""}.ti-message-circle:before{content:""}.ti-message-dots:before{content:""}.ti-messages:before{content:""}.ti-microphone:before{content:""}.ti-minimize:before{content:""}.ti-minus:before{content:""}.ti-mood-confuzed:before{content:""}.ti-mood-happy:before{content:""}.ti-mood-neutral:before{content:""}.ti-mood-sad:before{content:""}.ti-mood-smile:before{content:""}.ti-mood-tongue:before{content:""}.ti-moon:before{content:""}.ti-mouse:before{content:""}.ti-movie:before{content:""}.ti-mug:before{content:""}.ti-music:before{content:""}.ti-new-section:before{content:""}.ti-news:before{content:""}.ti-note:before{content:""}.ti-notebook:before{content:""}.ti-notes:before{content:""}.ti-notification:before{content:""}.ti-omega:before{content:""}.ti-outlet:before{content:""}.ti-package:before{content:""}.ti-paint:before{content:""}.ti-palette:before{content:""}.ti-paperclip:before{content:""}.ti-parentheses:before{content:""}.ti-parking:before{content:""}.ti-pencil:before{content:""}.ti-phone:before{content:""}.ti-phone-call:before{content:""}.ti-phone-incoming:before{content:""}.ti-phone-outgoing:before{content:""}.ti-phone-pause:before{content:""}.ti-photo:before{content:""}.ti-pillow:before{content:""}.ti-plane:before{content:""}.ti-plane-arrival:before{content:""}.ti-plane-departure:before{content:""}.ti-plug:before{content:""}.ti-plus:before{content:""}.ti-point:before{content:""}.ti-power:before{content:""}.ti-presentation:before{content:""}.ti-printer:before{content:""}.ti-prompt:before{content:""}.ti-puzzle:before{content:""}.ti-qrcode:before{content:""}.ti-record-mail:before{content:""}.ti-recycle:before{content:""}.ti-refresh:before{content:""}.ti-registered:before{content:""}.ti-repeat:before{content:""}.ti-repeat-once:before{content:""}.ti-replace:before{content:""}.ti-rotate:before{content:""}.ti-rotate-2:before{content:""}.ti-rotate-clockwise:before{content:""}.ti-rotate-clockwise-2:before{content:""}.ti-route:before{content:""}.ti-router:before{content:""}.ti-rss:before{content:""}.ti-ruler:before{content:""}.ti-scale:before{content:""}.ti-scan:before{content:""}.ti-scissors:before{content:""}.ti-search:before{content:""}.ti-selector:before{content:""}.ti-send:before{content:""}.ti-separator:before{content:""}.ti-server:before{content:""}.ti-settings:before{content:""}.ti-shape:before{content:""}.ti-share:before{content:""}.ti-shield:before{content:""}.ti-shield-check:before{content:""}.ti-shield-x:before{content:""}.ti-shopping-cart:before{content:""}.ti-sitemap:before{content:""}.ti-slice:before{content:""}.ti-slideshow:before{content:""}.ti-social:before{content:""}.ti-sort-ascending:before{content:""}.ti-sort-descending:before{content:""}.ti-square:before{content:""}.ti-square-check:before{content:""}.ti-square-minus:before{content:""}.ti-square-plus:before{content:""}.ti-square-x:before{content:""}.ti-stack:before{content:""}.ti-star:before{content:""}.ti-sticker:before{content:""}.ti-strikethrough:before{content:""}.ti-subscript:before{content:""}.ti-sum:before{content:""}.ti-sun:before{content:""}.ti-superscript:before{content:""}.ti-switch:before{content:""}.ti-switch-horizontal:before{content:""}.ti-switch-vertical:before{content:""}.ti-table:before{content:""}.ti-tag:before{content:""}.ti-target:before{content:""}.ti-tax:before{content:""}.ti-temperature:before{content:""}.ti-temperature-celsius:before{content:""}.ti-temperature-fahrenheit:before{content:""}.ti-temperature-minus:before{content:""}.ti-temperature-plus:before{content:""}.ti-template:before{content:""}.ti-terminal:before{content:""}.ti-terminal-2:before{content:""}.ti-test-pipe:before{content:""}.ti-text-wrap:before{content:""}.ti-thumb-down:before{content:""}.ti-thumb-up:before{content:""}.ti-ticket:before{content:""}.ti-tir:before{content:""}.ti-toggle-left:before{content:""}.ti-toggle-right:before{content:""}.ti-tool:before{content:""}.ti-tools:before{content:""}.ti-trash:before{content:""}.ti-trending-down:before{content:""}.ti-trending-up:before{content:""}.ti-triangle:before{content:""}.ti-trophy:before{content:""}.ti-truck:before{content:""}.ti-typography:before{content:""}.ti-umbrella:before{content:""}.ti-underline:before{content:""}.ti-unlink:before{content:""}.ti-upload:before{content:""}.ti-urgent:before{content:""}.ti-user:before{content:""}.ti-user-check:before{content:""}.ti-user-minus:before{content:""}.ti-user-plus:before{content:""}.ti-user-x:before{content:""}.ti-users:before{content:""}.ti-viewfinder:before{content:""}.ti-viewport-narrow:before{content:""}.ti-viewport-wide:before{content:""}.ti-virus:before{content:""}.ti-volume:before{content:""}.ti-volume-2:before{content:""}.ti-volume-3:before{content:""}.ti-wallet:before{content:""}.ti-wand:before{content:""}.ti-wifi:before{content:""}.ti-wifi-0:before{content:""}.ti-wifi-1:before{content:""}.ti-wifi-2:before{content:""}.ti-woman:before{content:""}.ti-world:before{content:""}.ti-x:before{content:""}.ti-zoom-in:before{content:""}.ti-zoom-out:before{content:""}
\ No newline at end of file
+ */@font-face{font-family:tabler-icons;font-style:normal;font-weight:400;src:url(fonts/tabler-icons.eot);src:url(fonts/tabler-icons.eot?#iefix) format("embedded-opentype"),url(fonts/tabler-icons.woff2) format("woff2"),url(fonts/tabler-icons.woff) format("woff"),url(fonts/tabler-icons.ttf) format("truetype")}.ti{font-family:tabler-icons!important;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ti-accessible:before{content:""}.ti-activity:before{content:""}.ti-ad:before{content:""}.ti-adjustments:before{content:""}.ti-alarm:before{content:""}.ti-alert-circle:before{content:""}.ti-alert-triangle:before{content:""}.ti-alien:before{content:""}.ti-align-center:before{content:""}.ti-align-justified:before{content:""}.ti-align-left:before{content:""}.ti-align-right:before{content:""}.ti-ambulance:before{content:""}.ti-anchor:before{content:""}.ti-aperture:before{content:""}.ti-apps:before{content:""}.ti-archive:before{content:""}.ti-arrow-back:before{content:""}.ti-arrow-back-up:before{content:""}.ti-arrow-bar-down:before{content:""}.ti-arrow-bar-left:before{content:""}.ti-arrow-bar-right:before{content:""}.ti-arrow-bar-up:before{content:""}.ti-arrow-down:before{content:""}.ti-arrow-down-circle:before{content:""}.ti-arrow-down-left:before{content:""}.ti-arrow-down-left-circle:before{content:""}.ti-arrow-down-right:before{content:""}.ti-arrow-down-right-circle:before{content:""}.ti-arrow-forward:before{content:""}.ti-arrow-forward-up:before{content:""}.ti-arrow-left:before{content:""}.ti-arrow-left-circle:before{content:""}.ti-arrow-narrow-down:before{content:""}.ti-arrow-narrow-left:before{content:""}.ti-arrow-narrow-right:before{content:""}.ti-arrow-narrow-up:before{content:""}.ti-arrow-right:before{content:""}.ti-arrow-right-circle:before{content:""}.ti-arrow-up:before{content:""}.ti-arrow-up-circle:before{content:""}.ti-arrow-up-left:before{content:""}.ti-arrow-up-left-circle:before{content:""}.ti-arrow-up-right:before{content:""}.ti-arrow-up-right-circle:before{content:""}.ti-arrows-diagonal:before{content:""}.ti-arrows-diagonal-2:before{content:""}.ti-arrows-horizontal:before{content:""}.ti-arrows-maximize:before{content:""}.ti-arrows-minimize:before{content:""}.ti-arrows-sort:before{content:""}.ti-arrows-vertical:before{content:""}.ti-artboard:before{content:""}.ti-at:before{content:""}.ti-atom:before{content:""}.ti-atom-2:before{content:""}.ti-award:before{content:""}.ti-backspace:before{content:""}.ti-ball-basketball:before{content:""}.ti-ball-bowling:before{content:""}.ti-ball-tennis:before{content:""}.ti-ball-volleyball:before{content:""}.ti-ban:before{content:""}.ti-bandage:before{content:""}.ti-barcode:before{content:""}.ti-basket:before{content:""}.ti-battery:before{content:""}.ti-battery-1:before{content:""}.ti-battery-2:before{content:""}.ti-battery-3:before{content:""}.ti-battery-4:before{content:""}.ti-battery-charging:before{content:""}.ti-bed:before{content:""}.ti-bell:before{content:""}.ti-bike:before{content:""}.ti-bluetooth:before{content:""}.ti-bold:before{content:""}.ti-bolt:before{content:""}.ti-book:before{content:""}.ti-bookmark:before{content:""}.ti-border-all:before{content:""}.ti-border-bottom:before{content:""}.ti-border-horizontal:before{content:""}.ti-border-inner:before{content:""}.ti-border-left:before{content:""}.ti-border-none:before{content:""}.ti-border-outer:before{content:""}.ti-border-radius:before{content:""}.ti-border-right:before{content:""}.ti-border-top:before{content:""}.ti-border-vertical:before{content:""}.ti-box:before{content:""}.ti-braces:before{content:""}.ti-brackets:before{content:""}.ti-brand-android:before{content:""}.ti-brand-apple:before{content:""}.ti-brand-chrome:before{content:""}.ti-brand-dribbble:before{content:""}.ti-brand-facebook:before{content:""}.ti-brand-framer:before{content:""}.ti-brand-github:before{content:""}.ti-brand-gitlab:before{content:""}.ti-brand-google:before{content:""}.ti-brand-google-drive:before{content:""}.ti-brand-instagram:before{content:""}.ti-brand-opera:before{content:""}.ti-brand-paypal:before{content:""}.ti-brand-safari:before{content:""}.ti-brand-sketch:before{content:""}.ti-brand-snapchat:before{content:""}.ti-brand-telegram:before{content:""}.ti-brand-twitter:before{content:""}.ti-briefcase:before{content:""}.ti-brightness:before{content:""}.ti-brightness-down:before{content:""}.ti-brightness-up:before{content:""}.ti-browser:before{content:""}.ti-brush:before{content:""}.ti-bucket:before{content:""}.ti-bug:before{content:""}.ti-building:before{content:""}.ti-building-arch:before{content:""}.ti-building-bank:before{content:""}.ti-building-bridge:before{content:""}.ti-building-bridge-2:before{content:""}.ti-building-church:before{content:""}.ti-building-community:before{content:""}.ti-building-hospital:before{content:""}.ti-building-pavilon:before{content:""}.ti-building-skyscrappers:before{content:""}.ti-building-store:before{content:""}.ti-building-warehouse:before{content:""}.ti-bulb:before{content:""}.ti-bulb-off:before{content:""}.ti-bus:before{content:""}.ti-calculator:before{content:""}.ti-calendar:before{content:""}.ti-calendar-event:before{content:""}.ti-calendar-minus:before{content:""}.ti-calendar-plus:before{content:""}.ti-camera:before{content:""}.ti-car:before{content:""}.ti-caret-down:before{content:""}.ti-caret-left:before{content:""}.ti-caret-right:before{content:""}.ti-caret-up:before{content:""}.ti-cash:before{content:""}.ti-cast:before{content:""}.ti-chart-area:before{content:""}.ti-chart-area-line:before{content:""}.ti-chart-bar:before{content:""}.ti-chart-candle:before{content:""}.ti-chart-donut:before{content:""}.ti-chart-line:before{content:""}.ti-chart-pie:before{content:""}.ti-check:before{content:""}.ti-checkbox:before{content:""}.ti-checks:before{content:""}.ti-chevron-down:before{content:""}.ti-chevron-left:before{content:""}.ti-chevron-right:before{content:""}.ti-chevron-up:before{content:""}.ti-chevrons-down:before{content:""}.ti-chevrons-left:before{content:""}.ti-chevrons-right:before{content:""}.ti-chevrons-up:before{content:""}.ti-circle:before{content:""}.ti-circle-check:before{content:""}.ti-circle-minus:before{content:""}.ti-circle-plus:before{content:""}.ti-circle-x:before{content:""}.ti-clear-formatting:before{content:""}.ti-click:before{content:""}.ti-clipboard:before{content:""}.ti-clipboard-check:before{content:""}.ti-clipboard-list:before{content:""}.ti-clipboard-x:before{content:""}.ti-clock:before{content:""}.ti-cloud:before{content:""}.ti-cloud-download:before{content:""}.ti-cloud-rain:before{content:""}.ti-cloud-snow:before{content:""}.ti-cloud-storm:before{content:""}.ti-cloud-upload:before{content:""}.ti-code:before{content:""}.ti-coin:before{content:""}.ti-color-picker:before{content:""}.ti-color-swatch:before{content:""}.ti-columns:before{content:""}.ti-command:before{content:""}.ti-compass:before{content:""}.ti-copy:before{content:""}.ti-copyright:before{content:""}.ti-corner-down-left:before{content:""}.ti-corner-down-right:before{content:""}.ti-corner-left-down:before{content:""}.ti-corner-left-up:before{content:""}.ti-corner-right-down:before{content:""}.ti-corner-right-up:before{content:""}.ti-corner-up-left:before{content:""}.ti-corner-up-right:before{content:""}.ti-credit-card:before{content:""}.ti-crop:before{content:""}.ti-currency-bitcoin:before{content:""}.ti-currency-dollar:before{content:""}.ti-currency-euro:before{content:""}.ti-currency-pound:before{content:""}.ti-currency-rupee:before{content:""}.ti-currency-yen:before{content:""}.ti-cut:before{content:""}.ti-dashboard:before{content:""}.ti-database:before{content:""}.ti-device-desktop:before{content:""}.ti-device-floppy:before{content:""}.ti-device-gamepad:before{content:""}.ti-device-laptop:before{content:""}.ti-device-mobile:before{content:""}.ti-device-mobile-vibration:before{content:""}.ti-device-speaker:before{content:""}.ti-device-tablet:before{content:""}.ti-device-tv:before{content:""}.ti-device-watch:before{content:""}.ti-devices:before{content:""}.ti-diamond:before{content:""}.ti-dice:before{content:""}.ti-direction:before{content:""}.ti-direction-horizontal:before{content:""}.ti-directions:before{content:""}.ti-disabled:before{content:""}.ti-disabled-2:before{content:""}.ti-disc:before{content:""}.ti-discount:before{content:""}.ti-dots:before{content:""}.ti-dots-circle-horizontal:before{content:""}.ti-dots-diagonal:before{content:""}.ti-dots-diagonal-2:before{content:""}.ti-dots-vertical:before{content:""}.ti-download:before{content:""}.ti-drag-drop:before{content:""}.ti-drag-drop-2:before{content:""}.ti-droplet:before{content:""}.ti-ear:before{content:""}.ti-edit:before{content:""}.ti-egg:before{content:""}.ti-emphasis:before{content:""}.ti-eraser:before{content:""}.ti-exchange:before{content:""}.ti-exposure:before{content:""}.ti-external-link:before{content:""}.ti-eye:before{content:""}.ti-face-id:before{content:""}.ti-file:before{content:""}.ti-file-check:before{content:""}.ti-file-code:before{content:""}.ti-file-download:before{content:""}.ti-file-horizontal:before{content:""}.ti-file-invoice:before{content:""}.ti-file-minus:before{content:""}.ti-file-music:before{content:""}.ti-file-plus:before{content:""}.ti-file-shredder:before{content:""}.ti-file-text:before{content:""}.ti-file-x:before{content:""}.ti-filter:before{content:""}.ti-fingerprint:before{content:""}.ti-firetruck:before{content:""}.ti-flag:before{content:""}.ti-flame:before{content:""}.ti-flask:before{content:""}.ti-flip-horizontal:before{content:""}.ti-flip-vertical:before{content:""}.ti-float-center:before{content:""}.ti-float-left:before{content:""}.ti-float-right:before{content:""}.ti-floppy-disk:before{content:""}.ti-focus:before{content:""}.ti-focus-2:before{content:""}.ti-folder:before{content:""}.ti-folder-minus:before{content:""}.ti-folder-plus:before{content:""}.ti-folder-x:before{content:""}.ti-folders:before{content:""}.ti-forbid:before{content:""}.ti-forbid-2:before{content:""}.ti-forklift:before{content:""}.ti-frame:before{content:""}.ti-friends:before{content:""}.ti-gauge:before{content:""}.ti-ghost:before{content:""}.ti-gift:before{content:""}.ti-git-branch:before{content:""}.ti-git-commit:before{content:""}.ti-git-compare:before{content:""}.ti-git-fork:before{content:""}.ti-git-merge:before{content:""}.ti-git-pull-request:before{content:""}.ti-glass:before{content:""}.ti-glass-full:before{content:""}.ti-globe:before{content:""}.ti-grid:before{content:""}.ti-grid-dots:before{content:""}.ti-grip-horizontal:before{content:""}.ti-grip-vertical:before{content:""}.ti-hand-middle-finger:before{content:""}.ti-hand-stop:before{content:""}.ti-hash:before{content:""}.ti-headphones:before{content:""}.ti-headset:before{content:""}.ti-heart:before{content:""}.ti-help:before{content:""}.ti-hexagon:before{content:""}.ti-history:before{content:""}.ti-home:before{content:""}.ti-home-2:before{content:""}.ti-ice-cream:before{content:""}.ti-id:before{content:""}.ti-inbox:before{content:""}.ti-indent-decrease:before{content:""}.ti-indent-increase:before{content:""}.ti-infinity:before{content:""}.ti-info-circle:before{content:""}.ti-info-square:before{content:""}.ti-italic:before{content:""}.ti-key:before{content:""}.ti-keyboard:before{content:""}.ti-language:before{content:""}.ti-layers-difference:before{content:""}.ti-layers-intersect:before{content:""}.ti-layers-subtract:before{content:""}.ti-layers-union:before{content:""}.ti-layout:before{content:""}.ti-layout-2:before{content:""}.ti-layout-align-bottom:before{content:""}.ti-layout-align-center:before{content:""}.ti-layout-align-left:before{content:""}.ti-layout-align-middle:before{content:""}.ti-layout-align-right:before{content:""}.ti-layout-align-top:before{content:""}.ti-layout-bottombar:before{content:""}.ti-layout-cards:before{content:""}.ti-layout-columns:before{content:""}.ti-layout-distribute-horizontal:before{content:""}.ti-layout-distribute-vertical:before{content:""}.ti-layout-list:before{content:""}.ti-layout-navbar:before{content:""}.ti-layout-rows:before{content:""}.ti-layout-sidebar:before{content:""}.ti-layout-sidebar-right:before{content:""}.ti-lego:before{content:""}.ti-letter-case:before{content:""}.ti-license:before{content:""}.ti-lifebuoy:before{content:""}.ti-line-height:before{content:""}.ti-link:before{content:""}.ti-list:before{content:""}.ti-list-check:before{content:""}.ti-live-photo:before{content:""}.ti-location:before{content:""}.ti-lock:before{content:""}.ti-lock-open:before{content:""}.ti-login:before{content:""}.ti-logout:before{content:""}.ti-magnet:before{content:""}.ti-mail:before{content:""}.ti-mail-opened:before{content:""}.ti-man:before{content:""}.ti-map:before{content:""}.ti-map-2:before{content:""}.ti-map-pin:before{content:""}.ti-math:before{content:""}.ti-maximize:before{content:""}.ti-medical-cross:before{content:""}.ti-menu:before{content:""}.ti-message:before{content:""}.ti-message-2:before{content:""}.ti-message-circle:before{content:""}.ti-message-dots:before{content:""}.ti-messages:before{content:""}.ti-microphone:before{content:""}.ti-minimize:before{content:""}.ti-minus:before{content:""}.ti-mist:before{content:""}.ti-mood-confuzed:before{content:""}.ti-mood-happy:before{content:""}.ti-mood-kid:before{content:""}.ti-mood-neutral:before{content:""}.ti-mood-sad:before{content:""}.ti-mood-smile:before{content:""}.ti-mood-suprised:before{content:""}.ti-mood-tongue:before{content:""}.ti-moon:before{content:""}.ti-mouse:before{content:""}.ti-movie:before{content:""}.ti-mug:before{content:""}.ti-music:before{content:""}.ti-new-section:before{content:""}.ti-news:before{content:""}.ti-note:before{content:""}.ti-notebook:before{content:""}.ti-notes:before{content:""}.ti-notification:before{content:""}.ti-omega:before{content:""}.ti-outlet:before{content:""}.ti-package:before{content:""}.ti-paint:before{content:""}.ti-palette:before{content:""}.ti-paperclip:before{content:""}.ti-parentheses:before{content:""}.ti-parking:before{content:""}.ti-pencil:before{content:""}.ti-phone:before{content:""}.ti-phone-call:before{content:""}.ti-phone-check:before{content:""}.ti-phone-incoming:before{content:""}.ti-phone-outgoing:before{content:""}.ti-phone-pause:before{content:""}.ti-phone-plus:before{content:""}.ti-phone-x:before{content:""}.ti-photo:before{content:""}.ti-pillow:before{content:""}.ti-plane:before{content:""}.ti-plane-arrival:before{content:""}.ti-plane-departure:before{content:""}.ti-planet:before{content:""}.ti-plug:before{content:""}.ti-plus:before{content:""}.ti-point:before{content:""}.ti-power:before{content:""}.ti-presentation:before{content:""}.ti-printer:before{content:""}.ti-prompt:before{content:""}.ti-puzzle:before{content:""}.ti-qrcode:before{content:""}.ti-record-mail:before{content:""}.ti-recycle:before{content:""}.ti-refresh:before{content:""}.ti-registered:before{content:""}.ti-repeat:before{content:""}.ti-repeat-once:before{content:""}.ti-replace:before{content:""}.ti-rotate:before{content:""}.ti-rotate-2:before{content:""}.ti-rotate-clockwise:before{content:""}.ti-rotate-clockwise-2:before{content:""}.ti-rotate-rectangle:before{content:""}.ti-route:before{content:""}.ti-router:before{content:""}.ti-rss:before{content:""}.ti-ruler:before{content:""}.ti-scale:before{content:""}.ti-scan:before{content:""}.ti-scissors:before{content:""}.ti-search:before{content:""}.ti-selector:before{content:""}.ti-send:before{content:""}.ti-separator:before{content:""}.ti-server:before{content:""}.ti-servicemark:before{content:""}.ti-settings:before{content:""}.ti-shape:before{content:""}.ti-share:before{content:""}.ti-shield:before{content:""}.ti-shield-check:before{content:""}.ti-shield-x:before{content:""}.ti-shirt:before{content:""}.ti-shopping-cart:before{content:""}.ti-sitemap:before{content:""}.ti-slice:before{content:""}.ti-slideshow:before{content:""}.ti-snowflake:before{content:""}.ti-social:before{content:""}.ti-sort-ascending:before{content:""}.ti-sort-descending:before{content:""}.ti-space:before{content:""}.ti-square:before{content:""}.ti-square-check:before{content:""}.ti-square-minus:before{content:""}.ti-square-plus:before{content:""}.ti-square-x:before{content:""}.ti-stack:before{content:""}.ti-star:before{content:""}.ti-sticker:before{content:""}.ti-strikethrough:before{content:""}.ti-subscript:before{content:""}.ti-sum:before{content:""}.ti-sun:before{content:""}.ti-sunset:before{content:""}.ti-sunshine:before{content:""}.ti-superscript:before{content:""}.ti-switch:before{content:""}.ti-switch-horizontal:before{content:""}.ti-switch-vertical:before{content:""}.ti-table:before{content:""}.ti-tag:before{content:""}.ti-target:before{content:""}.ti-tax:before{content:""}.ti-temperature:before{content:""}.ti-temperature-celsius:before{content:""}.ti-temperature-fahrenheit:before{content:""}.ti-temperature-minus:before{content:""}.ti-temperature-plus:before{content:""}.ti-template:before{content:""}.ti-terminal:before{content:""}.ti-terminal-2:before{content:""}.ti-test:before{content:""}.ti-test-pipe:before{content:""}.ti-text-wrap:before{content:""}.ti-thumb-down:before{content:""}.ti-thumb-up:before{content:""}.ti-ticket:before{content:""}.ti-tir:before{content:""}.ti-toggle-left:before{content:""}.ti-toggle-right:before{content:""}.ti-tool:before{content:""}.ti-tools:before{content:""}.ti-tractor:before{content:""}.ti-trademark:before{content:""}.ti-traffic-cone:before{content:""}.ti-trash:before{content:""}.ti-trees:before{content:""}.ti-trending-down:before{content:""}.ti-trending-up:before{content:""}.ti-triangle:before{content:""}.ti-trophy:before{content:""}.ti-truck:before{content:""}.ti-typography:before{content:""}.ti-umbrella:before{content:""}.ti-underline:before{content:""}.ti-unlink:before{content:""}.ti-upload:before{content:""}.ti-urgent:before{content:""}.ti-user:before{content:""}.ti-user-check:before{content:""}.ti-user-exclamation:before{content:""}.ti-user-minus:before{content:""}.ti-user-plus:before{content:""}.ti-user-x:before{content:""}.ti-users:before{content:""}.ti-viewfinder:before{content:""}.ti-viewport-narrow:before{content:""}.ti-viewport-wide:before{content:""}.ti-virus:before{content:""}.ti-volume:before{content:""}.ti-volume-2:before{content:""}.ti-volume-3:before{content:""}.ti-wallet:before{content:""}.ti-wand:before{content:""}.ti-wifi:before{content:""}.ti-wifi-0:before{content:""}.ti-wifi-1:before{content:""}.ti-wifi-2:before{content:""}.ti-wind:before{content:""}.ti-woman:before{content:""}.ti-world:before{content:""}.ti-x:before{content:""}.ti-yin-yang:before{content:""}.ti-zoom-in:before{content:""}.ti-zoom-out:before{content:""}
\ No newline at end of file
diff --git a/iconfont/tabler-icons.scss b/iconfont/tabler-icons.scss
index 193e70896..ae2c1443b 100644
--- a/iconfont/tabler-icons.scss
+++ b/iconfont/tabler-icons.scss
@@ -1,5 +1,5 @@
/*!
- * Tabler Icons 1.7.0 by tabler - https://tabler.io
+ * Tabler Icons 1.10.0 by tabler - https://tabler.io
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
*/
$ti-font-family: 'tabler-icons' !default;
@@ -46,6 +46,7 @@ $ti-icon-align-center: '\ea07';
$ti-icon-align-justified: '\ea08';
$ti-icon-align-left: '\ea09';
$ti-icon-align-right: '\ea0a';
+$ti-icon-ambulance: '\ebf5';
$ti-icon-anchor: '\eb76';
$ti-icon-aperture: '\eb58';
$ti-icon-apps: '\ebb6';
@@ -91,7 +92,10 @@ $ti-icon-atom: '\eb79';
$ti-icon-atom-2: '\ebdf';
$ti-icon-award: '\ea2c';
$ti-icon-backspace: '\ea2d';
-$ti-icon-ball: '\ebe0';
+$ti-icon-ball-basketball: '\ec28';
+$ti-icon-ball-bowling: '\ec29';
+$ti-icon-ball-tennis: '\ec2a';
+$ti-icon-ball-volleyball: '\ec2b';
$ti-icon-ban: '\ea2e';
$ti-icon-bandage: '\eb7a';
$ti-icon-barcode: '\ebc6';
@@ -124,6 +128,24 @@ $ti-icon-border-vertical: '\ea44';
$ti-icon-box: '\ea45';
$ti-icon-braces: '\ebcc';
$ti-icon-brackets: '\ebcd';
+$ti-icon-brand-android: '\ec16';
+$ti-icon-brand-apple: '\ec17';
+$ti-icon-brand-chrome: '\ec18';
+$ti-icon-brand-dribbble: '\ec19';
+$ti-icon-brand-facebook: '\ec1a';
+$ti-icon-brand-framer: '\ec1b';
+$ti-icon-brand-github: '\ec1c';
+$ti-icon-brand-gitlab: '\ec1d';
+$ti-icon-brand-google: '\ec1f';
+$ti-icon-brand-google-drive: '\ec1e';
+$ti-icon-brand-instagram: '\ec20';
+$ti-icon-brand-opera: '\ec21';
+$ti-icon-brand-paypal: '\ec22';
+$ti-icon-brand-safari: '\ec23';
+$ti-icon-brand-sketch: '\ec24';
+$ti-icon-brand-snapchat: '\ec25';
+$ti-icon-brand-telegram: '\ec26';
+$ti-icon-brand-twitter: '\ec27';
$ti-icon-briefcase: '\ea46';
$ti-icon-brightness: '\eb7f';
$ti-icon-brightness-down: '\eb7d';
@@ -138,7 +160,10 @@ $ti-icon-building-bank: '\ebe2';
$ti-icon-building-bridge: '\ea4b';
$ti-icon-building-bridge-2: '\ea4a';
$ti-icon-building-church: '\ea4c';
+$ti-icon-building-community: '\ebf6';
$ti-icon-building-hospital: '\ea4d';
+$ti-icon-building-pavilon: '\ebf7';
+$ti-icon-building-skyscrappers: '\ebf8';
$ti-icon-building-store: '\ea4e';
$ti-icon-building-warehouse: '\ebe3';
$ti-icon-bulb: '\ea51';
@@ -175,7 +200,6 @@ $ti-icon-chevrons-down: '\ea63';
$ti-icon-chevrons-left: '\ea64';
$ti-icon-chevrons-right: '\ea65';
$ti-icon-chevrons-up: '\ea66';
-$ti-icon-chrome: '\eb81';
$ti-icon-circle: '\ea6b';
$ti-icon-circle-check: '\ea67';
$ti-icon-circle-minus: '\ea68';
@@ -231,9 +255,12 @@ $ti-icon-device-mobile-vibration: '\eb86';
$ti-icon-device-speaker: '\ea8b';
$ti-icon-device-tablet: '\ea8c';
$ti-icon-device-tv: '\ea8d';
+$ti-icon-device-watch: '\ebf9';
$ti-icon-devices: '\eb87';
$ti-icon-diamond: '\eb65';
$ti-icon-dice: '\eb66';
+$ti-icon-direction: '\ebfb';
+$ti-icon-direction-horizontal: '\ebfa';
$ti-icon-directions: '\ea8e';
$ti-icon-disabled: '\ea8f';
$ti-icon-disabled-2: '\ebaf';
@@ -274,6 +301,7 @@ $ti-icon-filter: '\eaa5';
$ti-icon-fingerprint: '\ebd1';
$ti-icon-firetruck: '\ebe8';
$ti-icon-flag: '\eaa6';
+$ti-icon-flame: '\ec2c';
$ti-icon-flask: '\ebd2';
$ti-icon-flip-horizontal: '\eaa7';
$ti-icon-flip-vertical: '\eaa8';
@@ -307,11 +335,16 @@ $ti-icon-glass-full: '\eab7';
$ti-icon-globe: '\eab9';
$ti-icon-grid: '\eabb';
$ti-icon-grid-dots: '\eaba';
+$ti-icon-grip-horizontal: '\ec00';
+$ti-icon-grip-vertical: '\ec01';
+$ti-icon-hand-middle-finger: '\ec2d';
+$ti-icon-hand-stop: '\ec2e';
$ti-icon-hash: '\eabc';
$ti-icon-headphones: '\eabd';
$ti-icon-headset: '\eb90';
$ti-icon-heart: '\eabe';
$ti-icon-help: '\eabf';
+$ti-icon-hexagon: '\ec02';
$ti-icon-history: '\ebea';
$ti-icon-home: '\eac1';
$ti-icon-home-2: '\eac0';
@@ -340,9 +373,11 @@ $ti-icon-layout-align-middle: '\ead0';
$ti-icon-layout-align-right: '\ead1';
$ti-icon-layout-align-top: '\ead2';
$ti-icon-layout-bottombar: '\ead3';
+$ti-icon-layout-cards: '\ec13';
$ti-icon-layout-columns: '\ead4';
$ti-icon-layout-distribute-horizontal: '\ead5';
$ti-icon-layout-distribute-vertical: '\ead6';
+$ti-icon-layout-list: '\ec14';
$ti-icon-layout-navbar: '\ead7';
$ti-icon-layout-rows: '\ead8';
$ti-icon-layout-sidebar: '\eada';
@@ -370,6 +405,7 @@ $ti-icon-map-2: '\eae7';
$ti-icon-map-pin: '\eae8';
$ti-icon-math: '\ebeb';
$ti-icon-maximize: '\eaea';
+$ti-icon-medical-cross: '\ec2f';
$ti-icon-menu: '\eaeb';
$ti-icon-message: '\eaef';
$ti-icon-message-2: '\eaec';
@@ -379,11 +415,14 @@ $ti-icon-messages: '\eb6c';
$ti-icon-microphone: '\eaf0';
$ti-icon-minimize: '\eaf1';
$ti-icon-minus: '\eaf2';
+$ti-icon-mist: '\ec30';
$ti-icon-mood-confuzed: '\eaf3';
$ti-icon-mood-happy: '\eaf4';
+$ti-icon-mood-kid: '\ec03';
$ti-icon-mood-neutral: '\eaf5';
$ti-icon-mood-sad: '\eaf6';
$ti-icon-mood-smile: '\eaf7';
+$ti-icon-mood-suprised: '\ec04';
$ti-icon-mood-tongue: '\eb95';
$ti-icon-moon: '\eaf8';
$ti-icon-mouse: '\eaf9';
@@ -407,14 +446,18 @@ $ti-icon-parking: '\eb03';
$ti-icon-pencil: '\eb04';
$ti-icon-phone: '\eb09';
$ti-icon-phone-call: '\eb05';
+$ti-icon-phone-check: '\ec05';
$ti-icon-phone-incoming: '\eb06';
$ti-icon-phone-outgoing: '\eb07';
$ti-icon-phone-pause: '\eb08';
+$ti-icon-phone-plus: '\ec06';
+$ti-icon-phone-x: '\ec07';
$ti-icon-photo: '\eb0a';
$ti-icon-pillow: '\eb98';
$ti-icon-plane: '\eb6f';
$ti-icon-plane-arrival: '\eb99';
$ti-icon-plane-departure: '\eb9a';
+$ti-icon-planet: '\ec08';
$ti-icon-plug: '\ebd9';
$ti-icon-plus: '\eb0b';
$ti-icon-point: '\eb0c';
@@ -435,6 +478,7 @@ $ti-icon-rotate: '\eb16';
$ti-icon-rotate-2: '\ebb4';
$ti-icon-rotate-clockwise: '\eb15';
$ti-icon-rotate-clockwise-2: '\ebb5';
+$ti-icon-rotate-rectangle: '\ec15';
$ti-icon-route: '\eb17';
$ti-icon-router: '\eb18';
$ti-icon-rss: '\eb19';
@@ -447,19 +491,23 @@ $ti-icon-selector: '\eb1d';
$ti-icon-send: '\eb1e';
$ti-icon-separator: '\ebda';
$ti-icon-server: '\eb1f';
+$ti-icon-servicemark: '\ec09';
$ti-icon-settings: '\eb20';
$ti-icon-shape: '\eb9c';
$ti-icon-share: '\eb21';
$ti-icon-shield: '\eb24';
$ti-icon-shield-check: '\eb22';
$ti-icon-shield-x: '\eb23';
+$ti-icon-shirt: '\ec0a';
$ti-icon-shopping-cart: '\eb25';
$ti-icon-sitemap: '\eb9d';
$ti-icon-slice: '\ebdb';
$ti-icon-slideshow: '\ebc9';
+$ti-icon-snowflake: '\ec0b';
$ti-icon-social: '\ebec';
$ti-icon-sort-ascending: '\eb26';
$ti-icon-sort-descending: '\eb27';
+$ti-icon-space: '\ec0c';
$ti-icon-square: '\eb2c';
$ti-icon-square-check: '\eb28';
$ti-icon-square-minus: '\eb29';
@@ -472,6 +520,8 @@ $ti-icon-strikethrough: '\eb9e';
$ti-icon-subscript: '\eb9f';
$ti-icon-sum: '\eb73';
$ti-icon-sun: '\eb30';
+$ti-icon-sunset: '\ec31';
+$ti-icon-sunshine: '\ec32';
$ti-icon-superscript: '\eba0';
$ti-icon-switch: '\eb33';
$ti-icon-switch-horizontal: '\eb31';
@@ -488,6 +538,7 @@ $ti-icon-temperature-plus: '\ebee';
$ti-icon-template: '\eb39';
$ti-icon-terminal: '\ebdc';
$ti-icon-terminal-2: '\ebef';
+$ti-icon-test: '\ec33';
$ti-icon-test-pipe: '\eb3a';
$ti-icon-text-wrap: '\ebdd';
$ti-icon-thumb-down: '\eb3b';
@@ -498,7 +549,11 @@ $ti-icon-toggle-left: '\eb3e';
$ti-icon-toggle-right: '\eb3f';
$ti-icon-tool: '\eb40';
$ti-icon-tools: '\ebca';
+$ti-icon-tractor: '\ec0d';
+$ti-icon-trademark: '\ec0e';
+$ti-icon-traffic-cone: '\ec0f';
$ti-icon-trash: '\eb41';
+$ti-icon-trees: '\ec10';
$ti-icon-trending-down: '\eb42';
$ti-icon-trending-up: '\eb43';
$ti-icon-triangle: '\eb44';
@@ -512,6 +567,7 @@ $ti-icon-upload: '\eb47';
$ti-icon-urgent: '\eb48';
$ti-icon-user: '\eb4d';
$ti-icon-user-check: '\eb49';
+$ti-icon-user-exclamation: '\ec12';
$ti-icon-user-minus: '\eb4a';
$ti-icon-user-plus: '\eb4b';
$ti-icon-user-x: '\eb4c';
@@ -529,9 +585,11 @@ $ti-icon-wifi: '\eb52';
$ti-icon-wifi-0: '\eba3';
$ti-icon-wifi-1: '\eba4';
$ti-icon-wifi-2: '\eba5';
+$ti-icon-wind: '\ec34';
$ti-icon-woman: '\eb53';
$ti-icon-world: '\eb54';
$ti-icon-x: '\eb55';
+$ti-icon-yin-yang: '\ec35';
$ti-icon-zoom-in: '\eb56';
$ti-icon-zoom-out: '\eb57';
@@ -548,6 +606,7 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-align-justified:before { content: $ti-icon-align-justified; }
.#{$ti-icon-prefix}-align-left:before { content: $ti-icon-align-left; }
.#{$ti-icon-prefix}-align-right:before { content: $ti-icon-align-right; }
+.#{$ti-icon-prefix}-ambulance:before { content: $ti-icon-ambulance; }
.#{$ti-icon-prefix}-anchor:before { content: $ti-icon-anchor; }
.#{$ti-icon-prefix}-aperture:before { content: $ti-icon-aperture; }
.#{$ti-icon-prefix}-apps:before { content: $ti-icon-apps; }
@@ -593,7 +652,10 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-atom-2:before { content: $ti-icon-atom-2; }
.#{$ti-icon-prefix}-award:before { content: $ti-icon-award; }
.#{$ti-icon-prefix}-backspace:before { content: $ti-icon-backspace; }
-.#{$ti-icon-prefix}-ball:before { content: $ti-icon-ball; }
+.#{$ti-icon-prefix}-ball-basketball:before { content: $ti-icon-ball-basketball; }
+.#{$ti-icon-prefix}-ball-bowling:before { content: $ti-icon-ball-bowling; }
+.#{$ti-icon-prefix}-ball-tennis:before { content: $ti-icon-ball-tennis; }
+.#{$ti-icon-prefix}-ball-volleyball:before { content: $ti-icon-ball-volleyball; }
.#{$ti-icon-prefix}-ban:before { content: $ti-icon-ban; }
.#{$ti-icon-prefix}-bandage:before { content: $ti-icon-bandage; }
.#{$ti-icon-prefix}-barcode:before { content: $ti-icon-barcode; }
@@ -626,6 +688,24 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-box:before { content: $ti-icon-box; }
.#{$ti-icon-prefix}-braces:before { content: $ti-icon-braces; }
.#{$ti-icon-prefix}-brackets:before { content: $ti-icon-brackets; }
+.#{$ti-icon-prefix}-brand-android:before { content: $ti-icon-brand-android; }
+.#{$ti-icon-prefix}-brand-apple:before { content: $ti-icon-brand-apple; }
+.#{$ti-icon-prefix}-brand-chrome:before { content: $ti-icon-brand-chrome; }
+.#{$ti-icon-prefix}-brand-dribbble:before { content: $ti-icon-brand-dribbble; }
+.#{$ti-icon-prefix}-brand-facebook:before { content: $ti-icon-brand-facebook; }
+.#{$ti-icon-prefix}-brand-framer:before { content: $ti-icon-brand-framer; }
+.#{$ti-icon-prefix}-brand-github:before { content: $ti-icon-brand-github; }
+.#{$ti-icon-prefix}-brand-gitlab:before { content: $ti-icon-brand-gitlab; }
+.#{$ti-icon-prefix}-brand-google:before { content: $ti-icon-brand-google; }
+.#{$ti-icon-prefix}-brand-google-drive:before { content: $ti-icon-brand-google-drive; }
+.#{$ti-icon-prefix}-brand-instagram:before { content: $ti-icon-brand-instagram; }
+.#{$ti-icon-prefix}-brand-opera:before { content: $ti-icon-brand-opera; }
+.#{$ti-icon-prefix}-brand-paypal:before { content: $ti-icon-brand-paypal; }
+.#{$ti-icon-prefix}-brand-safari:before { content: $ti-icon-brand-safari; }
+.#{$ti-icon-prefix}-brand-sketch:before { content: $ti-icon-brand-sketch; }
+.#{$ti-icon-prefix}-brand-snapchat:before { content: $ti-icon-brand-snapchat; }
+.#{$ti-icon-prefix}-brand-telegram:before { content: $ti-icon-brand-telegram; }
+.#{$ti-icon-prefix}-brand-twitter:before { content: $ti-icon-brand-twitter; }
.#{$ti-icon-prefix}-briefcase:before { content: $ti-icon-briefcase; }
.#{$ti-icon-prefix}-brightness:before { content: $ti-icon-brightness; }
.#{$ti-icon-prefix}-brightness-down:before { content: $ti-icon-brightness-down; }
@@ -640,7 +720,10 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-building-bridge:before { content: $ti-icon-building-bridge; }
.#{$ti-icon-prefix}-building-bridge-2:before { content: $ti-icon-building-bridge-2; }
.#{$ti-icon-prefix}-building-church:before { content: $ti-icon-building-church; }
+.#{$ti-icon-prefix}-building-community:before { content: $ti-icon-building-community; }
.#{$ti-icon-prefix}-building-hospital:before { content: $ti-icon-building-hospital; }
+.#{$ti-icon-prefix}-building-pavilon:before { content: $ti-icon-building-pavilon; }
+.#{$ti-icon-prefix}-building-skyscrappers:before { content: $ti-icon-building-skyscrappers; }
.#{$ti-icon-prefix}-building-store:before { content: $ti-icon-building-store; }
.#{$ti-icon-prefix}-building-warehouse:before { content: $ti-icon-building-warehouse; }
.#{$ti-icon-prefix}-bulb:before { content: $ti-icon-bulb; }
@@ -677,7 +760,6 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-chevrons-left:before { content: $ti-icon-chevrons-left; }
.#{$ti-icon-prefix}-chevrons-right:before { content: $ti-icon-chevrons-right; }
.#{$ti-icon-prefix}-chevrons-up:before { content: $ti-icon-chevrons-up; }
-.#{$ti-icon-prefix}-chrome:before { content: $ti-icon-chrome; }
.#{$ti-icon-prefix}-circle:before { content: $ti-icon-circle; }
.#{$ti-icon-prefix}-circle-check:before { content: $ti-icon-circle-check; }
.#{$ti-icon-prefix}-circle-minus:before { content: $ti-icon-circle-minus; }
@@ -733,9 +815,12 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-device-speaker:before { content: $ti-icon-device-speaker; }
.#{$ti-icon-prefix}-device-tablet:before { content: $ti-icon-device-tablet; }
.#{$ti-icon-prefix}-device-tv:before { content: $ti-icon-device-tv; }
+.#{$ti-icon-prefix}-device-watch:before { content: $ti-icon-device-watch; }
.#{$ti-icon-prefix}-devices:before { content: $ti-icon-devices; }
.#{$ti-icon-prefix}-diamond:before { content: $ti-icon-diamond; }
.#{$ti-icon-prefix}-dice:before { content: $ti-icon-dice; }
+.#{$ti-icon-prefix}-direction:before { content: $ti-icon-direction; }
+.#{$ti-icon-prefix}-direction-horizontal:before { content: $ti-icon-direction-horizontal; }
.#{$ti-icon-prefix}-directions:before { content: $ti-icon-directions; }
.#{$ti-icon-prefix}-disabled:before { content: $ti-icon-disabled; }
.#{$ti-icon-prefix}-disabled-2:before { content: $ti-icon-disabled-2; }
@@ -776,6 +861,7 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-fingerprint:before { content: $ti-icon-fingerprint; }
.#{$ti-icon-prefix}-firetruck:before { content: $ti-icon-firetruck; }
.#{$ti-icon-prefix}-flag:before { content: $ti-icon-flag; }
+.#{$ti-icon-prefix}-flame:before { content: $ti-icon-flame; }
.#{$ti-icon-prefix}-flask:before { content: $ti-icon-flask; }
.#{$ti-icon-prefix}-flip-horizontal:before { content: $ti-icon-flip-horizontal; }
.#{$ti-icon-prefix}-flip-vertical:before { content: $ti-icon-flip-vertical; }
@@ -809,11 +895,16 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-globe:before { content: $ti-icon-globe; }
.#{$ti-icon-prefix}-grid:before { content: $ti-icon-grid; }
.#{$ti-icon-prefix}-grid-dots:before { content: $ti-icon-grid-dots; }
+.#{$ti-icon-prefix}-grip-horizontal:before { content: $ti-icon-grip-horizontal; }
+.#{$ti-icon-prefix}-grip-vertical:before { content: $ti-icon-grip-vertical; }
+.#{$ti-icon-prefix}-hand-middle-finger:before { content: $ti-icon-hand-middle-finger; }
+.#{$ti-icon-prefix}-hand-stop:before { content: $ti-icon-hand-stop; }
.#{$ti-icon-prefix}-hash:before { content: $ti-icon-hash; }
.#{$ti-icon-prefix}-headphones:before { content: $ti-icon-headphones; }
.#{$ti-icon-prefix}-headset:before { content: $ti-icon-headset; }
.#{$ti-icon-prefix}-heart:before { content: $ti-icon-heart; }
.#{$ti-icon-prefix}-help:before { content: $ti-icon-help; }
+.#{$ti-icon-prefix}-hexagon:before { content: $ti-icon-hexagon; }
.#{$ti-icon-prefix}-history:before { content: $ti-icon-history; }
.#{$ti-icon-prefix}-home:before { content: $ti-icon-home; }
.#{$ti-icon-prefix}-home-2:before { content: $ti-icon-home-2; }
@@ -842,9 +933,11 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-layout-align-right:before { content: $ti-icon-layout-align-right; }
.#{$ti-icon-prefix}-layout-align-top:before { content: $ti-icon-layout-align-top; }
.#{$ti-icon-prefix}-layout-bottombar:before { content: $ti-icon-layout-bottombar; }
+.#{$ti-icon-prefix}-layout-cards:before { content: $ti-icon-layout-cards; }
.#{$ti-icon-prefix}-layout-columns:before { content: $ti-icon-layout-columns; }
.#{$ti-icon-prefix}-layout-distribute-horizontal:before { content: $ti-icon-layout-distribute-horizontal; }
.#{$ti-icon-prefix}-layout-distribute-vertical:before { content: $ti-icon-layout-distribute-vertical; }
+.#{$ti-icon-prefix}-layout-list:before { content: $ti-icon-layout-list; }
.#{$ti-icon-prefix}-layout-navbar:before { content: $ti-icon-layout-navbar; }
.#{$ti-icon-prefix}-layout-rows:before { content: $ti-icon-layout-rows; }
.#{$ti-icon-prefix}-layout-sidebar:before { content: $ti-icon-layout-sidebar; }
@@ -872,6 +965,7 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-map-pin:before { content: $ti-icon-map-pin; }
.#{$ti-icon-prefix}-math:before { content: $ti-icon-math; }
.#{$ti-icon-prefix}-maximize:before { content: $ti-icon-maximize; }
+.#{$ti-icon-prefix}-medical-cross:before { content: $ti-icon-medical-cross; }
.#{$ti-icon-prefix}-menu:before { content: $ti-icon-menu; }
.#{$ti-icon-prefix}-message:before { content: $ti-icon-message; }
.#{$ti-icon-prefix}-message-2:before { content: $ti-icon-message-2; }
@@ -881,11 +975,14 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-microphone:before { content: $ti-icon-microphone; }
.#{$ti-icon-prefix}-minimize:before { content: $ti-icon-minimize; }
.#{$ti-icon-prefix}-minus:before { content: $ti-icon-minus; }
+.#{$ti-icon-prefix}-mist:before { content: $ti-icon-mist; }
.#{$ti-icon-prefix}-mood-confuzed:before { content: $ti-icon-mood-confuzed; }
.#{$ti-icon-prefix}-mood-happy:before { content: $ti-icon-mood-happy; }
+.#{$ti-icon-prefix}-mood-kid:before { content: $ti-icon-mood-kid; }
.#{$ti-icon-prefix}-mood-neutral:before { content: $ti-icon-mood-neutral; }
.#{$ti-icon-prefix}-mood-sad:before { content: $ti-icon-mood-sad; }
.#{$ti-icon-prefix}-mood-smile:before { content: $ti-icon-mood-smile; }
+.#{$ti-icon-prefix}-mood-suprised:before { content: $ti-icon-mood-suprised; }
.#{$ti-icon-prefix}-mood-tongue:before { content: $ti-icon-mood-tongue; }
.#{$ti-icon-prefix}-moon:before { content: $ti-icon-moon; }
.#{$ti-icon-prefix}-mouse:before { content: $ti-icon-mouse; }
@@ -909,14 +1006,18 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-pencil:before { content: $ti-icon-pencil; }
.#{$ti-icon-prefix}-phone:before { content: $ti-icon-phone; }
.#{$ti-icon-prefix}-phone-call:before { content: $ti-icon-phone-call; }
+.#{$ti-icon-prefix}-phone-check:before { content: $ti-icon-phone-check; }
.#{$ti-icon-prefix}-phone-incoming:before { content: $ti-icon-phone-incoming; }
.#{$ti-icon-prefix}-phone-outgoing:before { content: $ti-icon-phone-outgoing; }
.#{$ti-icon-prefix}-phone-pause:before { content: $ti-icon-phone-pause; }
+.#{$ti-icon-prefix}-phone-plus:before { content: $ti-icon-phone-plus; }
+.#{$ti-icon-prefix}-phone-x:before { content: $ti-icon-phone-x; }
.#{$ti-icon-prefix}-photo:before { content: $ti-icon-photo; }
.#{$ti-icon-prefix}-pillow:before { content: $ti-icon-pillow; }
.#{$ti-icon-prefix}-plane:before { content: $ti-icon-plane; }
.#{$ti-icon-prefix}-plane-arrival:before { content: $ti-icon-plane-arrival; }
.#{$ti-icon-prefix}-plane-departure:before { content: $ti-icon-plane-departure; }
+.#{$ti-icon-prefix}-planet:before { content: $ti-icon-planet; }
.#{$ti-icon-prefix}-plug:before { content: $ti-icon-plug; }
.#{$ti-icon-prefix}-plus:before { content: $ti-icon-plus; }
.#{$ti-icon-prefix}-point:before { content: $ti-icon-point; }
@@ -937,6 +1038,7 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-rotate-2:before { content: $ti-icon-rotate-2; }
.#{$ti-icon-prefix}-rotate-clockwise:before { content: $ti-icon-rotate-clockwise; }
.#{$ti-icon-prefix}-rotate-clockwise-2:before { content: $ti-icon-rotate-clockwise-2; }
+.#{$ti-icon-prefix}-rotate-rectangle:before { content: $ti-icon-rotate-rectangle; }
.#{$ti-icon-prefix}-route:before { content: $ti-icon-route; }
.#{$ti-icon-prefix}-router:before { content: $ti-icon-router; }
.#{$ti-icon-prefix}-rss:before { content: $ti-icon-rss; }
@@ -949,19 +1051,23 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-send:before { content: $ti-icon-send; }
.#{$ti-icon-prefix}-separator:before { content: $ti-icon-separator; }
.#{$ti-icon-prefix}-server:before { content: $ti-icon-server; }
+.#{$ti-icon-prefix}-servicemark:before { content: $ti-icon-servicemark; }
.#{$ti-icon-prefix}-settings:before { content: $ti-icon-settings; }
.#{$ti-icon-prefix}-shape:before { content: $ti-icon-shape; }
.#{$ti-icon-prefix}-share:before { content: $ti-icon-share; }
.#{$ti-icon-prefix}-shield:before { content: $ti-icon-shield; }
.#{$ti-icon-prefix}-shield-check:before { content: $ti-icon-shield-check; }
.#{$ti-icon-prefix}-shield-x:before { content: $ti-icon-shield-x; }
+.#{$ti-icon-prefix}-shirt:before { content: $ti-icon-shirt; }
.#{$ti-icon-prefix}-shopping-cart:before { content: $ti-icon-shopping-cart; }
.#{$ti-icon-prefix}-sitemap:before { content: $ti-icon-sitemap; }
.#{$ti-icon-prefix}-slice:before { content: $ti-icon-slice; }
.#{$ti-icon-prefix}-slideshow:before { content: $ti-icon-slideshow; }
+.#{$ti-icon-prefix}-snowflake:before { content: $ti-icon-snowflake; }
.#{$ti-icon-prefix}-social:before { content: $ti-icon-social; }
.#{$ti-icon-prefix}-sort-ascending:before { content: $ti-icon-sort-ascending; }
.#{$ti-icon-prefix}-sort-descending:before { content: $ti-icon-sort-descending; }
+.#{$ti-icon-prefix}-space:before { content: $ti-icon-space; }
.#{$ti-icon-prefix}-square:before { content: $ti-icon-square; }
.#{$ti-icon-prefix}-square-check:before { content: $ti-icon-square-check; }
.#{$ti-icon-prefix}-square-minus:before { content: $ti-icon-square-minus; }
@@ -974,6 +1080,8 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-subscript:before { content: $ti-icon-subscript; }
.#{$ti-icon-prefix}-sum:before { content: $ti-icon-sum; }
.#{$ti-icon-prefix}-sun:before { content: $ti-icon-sun; }
+.#{$ti-icon-prefix}-sunset:before { content: $ti-icon-sunset; }
+.#{$ti-icon-prefix}-sunshine:before { content: $ti-icon-sunshine; }
.#{$ti-icon-prefix}-superscript:before { content: $ti-icon-superscript; }
.#{$ti-icon-prefix}-switch:before { content: $ti-icon-switch; }
.#{$ti-icon-prefix}-switch-horizontal:before { content: $ti-icon-switch-horizontal; }
@@ -990,6 +1098,7 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-template:before { content: $ti-icon-template; }
.#{$ti-icon-prefix}-terminal:before { content: $ti-icon-terminal; }
.#{$ti-icon-prefix}-terminal-2:before { content: $ti-icon-terminal-2; }
+.#{$ti-icon-prefix}-test:before { content: $ti-icon-test; }
.#{$ti-icon-prefix}-test-pipe:before { content: $ti-icon-test-pipe; }
.#{$ti-icon-prefix}-text-wrap:before { content: $ti-icon-text-wrap; }
.#{$ti-icon-prefix}-thumb-down:before { content: $ti-icon-thumb-down; }
@@ -1000,7 +1109,11 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-toggle-right:before { content: $ti-icon-toggle-right; }
.#{$ti-icon-prefix}-tool:before { content: $ti-icon-tool; }
.#{$ti-icon-prefix}-tools:before { content: $ti-icon-tools; }
+.#{$ti-icon-prefix}-tractor:before { content: $ti-icon-tractor; }
+.#{$ti-icon-prefix}-trademark:before { content: $ti-icon-trademark; }
+.#{$ti-icon-prefix}-traffic-cone:before { content: $ti-icon-traffic-cone; }
.#{$ti-icon-prefix}-trash:before { content: $ti-icon-trash; }
+.#{$ti-icon-prefix}-trees:before { content: $ti-icon-trees; }
.#{$ti-icon-prefix}-trending-down:before { content: $ti-icon-trending-down; }
.#{$ti-icon-prefix}-trending-up:before { content: $ti-icon-trending-up; }
.#{$ti-icon-prefix}-triangle:before { content: $ti-icon-triangle; }
@@ -1014,6 +1127,7 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-urgent:before { content: $ti-icon-urgent; }
.#{$ti-icon-prefix}-user:before { content: $ti-icon-user; }
.#{$ti-icon-prefix}-user-check:before { content: $ti-icon-user-check; }
+.#{$ti-icon-prefix}-user-exclamation:before { content: $ti-icon-user-exclamation; }
.#{$ti-icon-prefix}-user-minus:before { content: $ti-icon-user-minus; }
.#{$ti-icon-prefix}-user-plus:before { content: $ti-icon-user-plus; }
.#{$ti-icon-prefix}-user-x:before { content: $ti-icon-user-x; }
@@ -1031,8 +1145,10 @@ $ti-icon-zoom-out: '\eb57';
.#{$ti-icon-prefix}-wifi-0:before { content: $ti-icon-wifi-0; }
.#{$ti-icon-prefix}-wifi-1:before { content: $ti-icon-wifi-1; }
.#{$ti-icon-prefix}-wifi-2:before { content: $ti-icon-wifi-2; }
+.#{$ti-icon-prefix}-wind:before { content: $ti-icon-wind; }
.#{$ti-icon-prefix}-woman:before { content: $ti-icon-woman; }
.#{$ti-icon-prefix}-world:before { content: $ti-icon-world; }
.#{$ti-icon-prefix}-x:before { content: $ti-icon-x; }
+.#{$ti-icon-prefix}-yin-yang:before { content: $ti-icon-yin-yang; }
.#{$ti-icon-prefix}-zoom-in:before { content: $ti-icon-zoom-in; }
.#{$ti-icon-prefix}-zoom-out:before { content: $ti-icon-zoom-out; }
diff --git a/icons-png/accessible.png b/icons-png/accessible.png
index 025ab1fb4..0d3d86ac4 100644
Binary files a/icons-png/accessible.png and b/icons-png/accessible.png differ
diff --git a/icons-png/ambulance.png b/icons-png/ambulance.png
new file mode 100644
index 000000000..9a15d7f39
Binary files /dev/null and b/icons-png/ambulance.png differ
diff --git a/icons-png/ball.png b/icons-png/ball-basketball.png
similarity index 100%
rename from icons-png/ball.png
rename to icons-png/ball-basketball.png
diff --git a/icons-png/ball-bowling.png b/icons-png/ball-bowling.png
new file mode 100644
index 000000000..f12f590e5
Binary files /dev/null and b/icons-png/ball-bowling.png differ
diff --git a/icons-png/ball-tennis.png b/icons-png/ball-tennis.png
new file mode 100644
index 000000000..ae97c633e
Binary files /dev/null and b/icons-png/ball-tennis.png differ
diff --git a/icons-png/ball-volleyball.png b/icons-png/ball-volleyball.png
new file mode 100644
index 000000000..865188f4e
Binary files /dev/null and b/icons-png/ball-volleyball.png differ
diff --git a/icons-png/brand-android.png b/icons-png/brand-android.png
new file mode 100644
index 000000000..ad82d2beb
Binary files /dev/null and b/icons-png/brand-android.png differ
diff --git a/icons-png/brand-apple.png b/icons-png/brand-apple.png
new file mode 100644
index 000000000..e2792d0a9
Binary files /dev/null and b/icons-png/brand-apple.png differ
diff --git a/icons-png/brand-chrome.png b/icons-png/brand-chrome.png
new file mode 100644
index 000000000..313653e89
Binary files /dev/null and b/icons-png/brand-chrome.png differ
diff --git a/icons-png/brand-dribbble.png b/icons-png/brand-dribbble.png
new file mode 100644
index 000000000..ce793f372
Binary files /dev/null and b/icons-png/brand-dribbble.png differ
diff --git a/icons-png/brand-facebook.png b/icons-png/brand-facebook.png
new file mode 100644
index 000000000..e4b621f53
Binary files /dev/null and b/icons-png/brand-facebook.png differ
diff --git a/icons-png/brand-framer.png b/icons-png/brand-framer.png
new file mode 100644
index 000000000..d4edca39e
Binary files /dev/null and b/icons-png/brand-framer.png differ
diff --git a/icons-png/brand-github.png b/icons-png/brand-github.png
new file mode 100644
index 000000000..2fa7cbc5c
Binary files /dev/null and b/icons-png/brand-github.png differ
diff --git a/icons-png/brand-gitlab.png b/icons-png/brand-gitlab.png
new file mode 100644
index 000000000..f15f13e75
Binary files /dev/null and b/icons-png/brand-gitlab.png differ
diff --git a/icons-png/brand-google-drive.png b/icons-png/brand-google-drive.png
new file mode 100644
index 000000000..1aa73e13b
Binary files /dev/null and b/icons-png/brand-google-drive.png differ
diff --git a/icons-png/brand-google.png b/icons-png/brand-google.png
new file mode 100644
index 000000000..b011ba4d3
Binary files /dev/null and b/icons-png/brand-google.png differ
diff --git a/icons-png/brand-instagram.png b/icons-png/brand-instagram.png
new file mode 100644
index 000000000..365337eb7
Binary files /dev/null and b/icons-png/brand-instagram.png differ
diff --git a/icons-png/brand-opera.png b/icons-png/brand-opera.png
new file mode 100644
index 000000000..ca09da6b5
Binary files /dev/null and b/icons-png/brand-opera.png differ
diff --git a/icons-png/brand-paypal.png b/icons-png/brand-paypal.png
new file mode 100644
index 000000000..7edd78b5e
Binary files /dev/null and b/icons-png/brand-paypal.png differ
diff --git a/icons-png/brand-safari.png b/icons-png/brand-safari.png
new file mode 100644
index 000000000..912781209
Binary files /dev/null and b/icons-png/brand-safari.png differ
diff --git a/icons-png/brand-sketch.png b/icons-png/brand-sketch.png
new file mode 100644
index 000000000..0b87bd412
Binary files /dev/null and b/icons-png/brand-sketch.png differ
diff --git a/icons-png/brand-snapchat.png b/icons-png/brand-snapchat.png
new file mode 100644
index 000000000..20444626a
Binary files /dev/null and b/icons-png/brand-snapchat.png differ
diff --git a/icons-png/brand-telegram.png b/icons-png/brand-telegram.png
new file mode 100644
index 000000000..4dbd5c991
Binary files /dev/null and b/icons-png/brand-telegram.png differ
diff --git a/icons-png/brand-twitter.png b/icons-png/brand-twitter.png
new file mode 100644
index 000000000..e44b7a26a
Binary files /dev/null and b/icons-png/brand-twitter.png differ
diff --git a/icons-png/building-community.png b/icons-png/building-community.png
new file mode 100644
index 000000000..9d7f72a7d
Binary files /dev/null and b/icons-png/building-community.png differ
diff --git a/icons-png/building-pavilon.png b/icons-png/building-pavilon.png
new file mode 100644
index 000000000..a246caaca
Binary files /dev/null and b/icons-png/building-pavilon.png differ
diff --git a/icons-png/building-skyscrappers.png b/icons-png/building-skyscrappers.png
new file mode 100644
index 000000000..aab9f336f
Binary files /dev/null and b/icons-png/building-skyscrappers.png differ
diff --git a/icons-png/chrome.png b/icons-png/chrome.png
deleted file mode 100644
index 0969fb123..000000000
Binary files a/icons-png/chrome.png and /dev/null differ
diff --git a/icons-png/device-mobile-vibration.png b/icons-png/device-mobile-vibration.png
index 8797330bc..cff686c1b 100644
Binary files a/icons-png/device-mobile-vibration.png and b/icons-png/device-mobile-vibration.png differ
diff --git a/icons-png/device-watch.png b/icons-png/device-watch.png
new file mode 100644
index 000000000..204fbf938
Binary files /dev/null and b/icons-png/device-watch.png differ
diff --git a/icons-png/dice.png b/icons-png/dice.png
index 82700f555..492ff2991 100644
Binary files a/icons-png/dice.png and b/icons-png/dice.png differ
diff --git a/icons-png/direction-horizontal.png b/icons-png/direction-horizontal.png
new file mode 100644
index 000000000..28b6aa05c
Binary files /dev/null and b/icons-png/direction-horizontal.png differ
diff --git a/icons-png/direction.png b/icons-png/direction.png
new file mode 100644
index 000000000..5bad7e3dc
Binary files /dev/null and b/icons-png/direction.png differ
diff --git a/icons-png/discount.png b/icons-png/discount.png
index 3c5443710..ebf45b829 100644
Binary files a/icons-png/discount.png and b/icons-png/discount.png differ
diff --git a/icons-png/flame.png b/icons-png/flame.png
new file mode 100644
index 000000000..4f8461ef3
Binary files /dev/null and b/icons-png/flame.png differ
diff --git a/icons-png/grip-horizontal.png b/icons-png/grip-horizontal.png
new file mode 100644
index 000000000..5cb7cb09a
Binary files /dev/null and b/icons-png/grip-horizontal.png differ
diff --git a/icons-png/grip-vertical.png b/icons-png/grip-vertical.png
new file mode 100644
index 000000000..b011263f9
Binary files /dev/null and b/icons-png/grip-vertical.png differ
diff --git a/icons-png/hand-middle-finger.png b/icons-png/hand-middle-finger.png
new file mode 100644
index 000000000..2d3a4d211
Binary files /dev/null and b/icons-png/hand-middle-finger.png differ
diff --git a/icons-png/hand-stop.png b/icons-png/hand-stop.png
new file mode 100644
index 000000000..e14d83433
Binary files /dev/null and b/icons-png/hand-stop.png differ
diff --git a/icons-png/hexagon.png b/icons-png/hexagon.png
new file mode 100644
index 000000000..5cdb4e71d
Binary files /dev/null and b/icons-png/hexagon.png differ
diff --git a/icons-png/language.png b/icons-png/language.png
index 62a5afea1..1dca4015a 100644
Binary files a/icons-png/language.png and b/icons-png/language.png differ
diff --git a/icons-png/layout-cards.png b/icons-png/layout-cards.png
new file mode 100644
index 000000000..7a6924620
Binary files /dev/null and b/icons-png/layout-cards.png differ
diff --git a/icons-png/layout-list.png b/icons-png/layout-list.png
new file mode 100644
index 000000000..c278c0dd0
Binary files /dev/null and b/icons-png/layout-list.png differ
diff --git a/icons-png/medical-cross.png b/icons-png/medical-cross.png
new file mode 100644
index 000000000..d16115ec3
Binary files /dev/null and b/icons-png/medical-cross.png differ
diff --git a/icons-png/mist.png b/icons-png/mist.png
new file mode 100644
index 000000000..477038aaf
Binary files /dev/null and b/icons-png/mist.png differ
diff --git a/icons-png/mood-kid.png b/icons-png/mood-kid.png
new file mode 100644
index 000000000..822e5001f
Binary files /dev/null and b/icons-png/mood-kid.png differ
diff --git a/icons-png/mood-suprised.png b/icons-png/mood-suprised.png
new file mode 100644
index 000000000..3f46b2da4
Binary files /dev/null and b/icons-png/mood-suprised.png differ
diff --git a/icons-png/mood-tongue.png b/icons-png/mood-tongue.png
index a854bc70c..5fabc8734 100644
Binary files a/icons-png/mood-tongue.png and b/icons-png/mood-tongue.png differ
diff --git a/icons-png/palette.png b/icons-png/palette.png
index 2e5a13e7c..fc447353a 100644
Binary files a/icons-png/palette.png and b/icons-png/palette.png differ
diff --git a/icons-png/phone-call.png b/icons-png/phone-call.png
index a3fdc9aed..ea3fd4df2 100644
Binary files a/icons-png/phone-call.png and b/icons-png/phone-call.png differ
diff --git a/icons-png/phone-check.png b/icons-png/phone-check.png
new file mode 100644
index 000000000..86d02a0a8
Binary files /dev/null and b/icons-png/phone-check.png differ
diff --git a/icons-png/phone-incoming.png b/icons-png/phone-incoming.png
index f3247fcee..4463b7df3 100644
Binary files a/icons-png/phone-incoming.png and b/icons-png/phone-incoming.png differ
diff --git a/icons-png/phone-outgoing.png b/icons-png/phone-outgoing.png
index e3155301a..82f606c76 100644
Binary files a/icons-png/phone-outgoing.png and b/icons-png/phone-outgoing.png differ
diff --git a/icons-png/phone-pause.png b/icons-png/phone-pause.png
index 5aeda5c9d..fffb0cd9f 100644
Binary files a/icons-png/phone-pause.png and b/icons-png/phone-pause.png differ
diff --git a/icons-png/phone-plus.png b/icons-png/phone-plus.png
new file mode 100644
index 000000000..06a5f9d15
Binary files /dev/null and b/icons-png/phone-plus.png differ
diff --git a/icons-png/phone-x.png b/icons-png/phone-x.png
new file mode 100644
index 000000000..0828ba4a4
Binary files /dev/null and b/icons-png/phone-x.png differ
diff --git a/icons-png/phone.png b/icons-png/phone.png
index 58cd308e9..6f4d9c473 100644
Binary files a/icons-png/phone.png and b/icons-png/phone.png differ
diff --git a/icons-png/planet.png b/icons-png/planet.png
new file mode 100644
index 000000000..dcf88d553
Binary files /dev/null and b/icons-png/planet.png differ
diff --git a/icons-png/rotate-rectangle.png b/icons-png/rotate-rectangle.png
new file mode 100644
index 000000000..14378a159
Binary files /dev/null and b/icons-png/rotate-rectangle.png differ
diff --git a/icons-png/servicemark.png b/icons-png/servicemark.png
new file mode 100644
index 000000000..4962d8d28
Binary files /dev/null and b/icons-png/servicemark.png differ
diff --git a/icons-png/shirt.png b/icons-png/shirt.png
new file mode 100644
index 000000000..9952481f4
Binary files /dev/null and b/icons-png/shirt.png differ
diff --git a/icons-png/snowflake.png b/icons-png/snowflake.png
new file mode 100644
index 000000000..dabe4236b
Binary files /dev/null and b/icons-png/snowflake.png differ
diff --git a/icons-png/space.png b/icons-png/space.png
new file mode 100644
index 000000000..0b64955ed
Binary files /dev/null and b/icons-png/space.png differ
diff --git a/icons-png/sunset.png b/icons-png/sunset.png
new file mode 100644
index 000000000..7a682ac41
Binary files /dev/null and b/icons-png/sunset.png differ
diff --git a/icons-png/sunshine.png b/icons-png/sunshine.png
new file mode 100644
index 000000000..42d6f2bc8
Binary files /dev/null and b/icons-png/sunshine.png differ
diff --git a/icons-png/tax.png b/icons-png/tax.png
index 13d839139..c435278d7 100644
Binary files a/icons-png/tax.png and b/icons-png/tax.png differ
diff --git a/icons-png/test.png b/icons-png/test.png
new file mode 100644
index 000000000..47d82c6ec
Binary files /dev/null and b/icons-png/test.png differ
diff --git a/icons-png/tractor.png b/icons-png/tractor.png
new file mode 100644
index 000000000..709dd7af3
Binary files /dev/null and b/icons-png/tractor.png differ
diff --git a/icons-png/trademark.png b/icons-png/trademark.png
new file mode 100644
index 000000000..c98fc7029
Binary files /dev/null and b/icons-png/trademark.png differ
diff --git a/icons-png/traffic-cone.png b/icons-png/traffic-cone.png
new file mode 100644
index 000000000..d5d21c388
Binary files /dev/null and b/icons-png/traffic-cone.png differ
diff --git a/icons-png/trees.png b/icons-png/trees.png
new file mode 100644
index 000000000..581a815a3
Binary files /dev/null and b/icons-png/trees.png differ
diff --git a/icons-png/user-exclamation.png b/icons-png/user-exclamation.png
new file mode 100644
index 000000000..1194673a7
Binary files /dev/null and b/icons-png/user-exclamation.png differ
diff --git a/icons-png/user-plus.png b/icons-png/user-plus.png
index 504bd991e..24a04a3ea 100644
Binary files a/icons-png/user-plus.png and b/icons-png/user-plus.png differ
diff --git a/icons-png/wind.png b/icons-png/wind.png
new file mode 100644
index 000000000..a4ba8942b
Binary files /dev/null and b/icons-png/wind.png differ
diff --git a/icons-png/yin-yang.png b/icons-png/yin-yang.png
new file mode 100644
index 000000000..857e57dd9
Binary files /dev/null and b/icons-png/yin-yang.png differ
diff --git a/icons/accessible.svg b/icons/accessible.svg
index 1cd3179f6..6b84e71f2 100644
--- a/icons/accessible.svg
+++ b/icons/accessible.svg
@@ -2,7 +2,7 @@
-
+
diff --git a/icons/ambulance.svg b/icons/ambulance.svg
new file mode 100644
index 000000000..244ff4ea6
--- /dev/null
+++ b/icons/ambulance.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/ball.svg b/icons/ball-basketball.svg
similarity index 65%
rename from icons/ball.svg
rename to icons/ball-basketball.svg
index a08a21d54..17b768458 100644
--- a/icons/ball.svg
+++ b/icons/ball-basketball.svg
@@ -1,4 +1,4 @@
-
+
diff --git a/icons/ball-bowling.svg b/icons/ball-bowling.svg
new file mode 100644
index 000000000..3768f0bbf
--- /dev/null
+++ b/icons/ball-bowling.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/ball-tennis.svg b/icons/ball-tennis.svg
new file mode 100644
index 000000000..3111cac9c
--- /dev/null
+++ b/icons/ball-tennis.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/ball-volleyball.svg b/icons/ball-volleyball.svg
new file mode 100644
index 000000000..48d994860
--- /dev/null
+++ b/icons/ball-volleyball.svg
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/brand-android.svg b/icons/brand-android.svg
new file mode 100644
index 000000000..bd1719b8e
--- /dev/null
+++ b/icons/brand-android.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/brand-apple.svg b/icons/brand-apple.svg
new file mode 100644
index 000000000..dfe7a4c42
--- /dev/null
+++ b/icons/brand-apple.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/brand-chrome.svg b/icons/brand-chrome.svg
new file mode 100644
index 000000000..cf72eb364
--- /dev/null
+++ b/icons/brand-chrome.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/brand-dribbble.svg b/icons/brand-dribbble.svg
new file mode 100644
index 000000000..7554a6949
--- /dev/null
+++ b/icons/brand-dribbble.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/brand-facebook.svg b/icons/brand-facebook.svg
new file mode 100644
index 000000000..e6a28d930
--- /dev/null
+++ b/icons/brand-facebook.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-framer.svg b/icons/brand-framer.svg
new file mode 100644
index 000000000..91eaaf21f
--- /dev/null
+++ b/icons/brand-framer.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-github.svg b/icons/brand-github.svg
new file mode 100644
index 000000000..4a48d7aee
--- /dev/null
+++ b/icons/brand-github.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-gitlab.svg b/icons/brand-gitlab.svg
new file mode 100644
index 000000000..d81766eb6
--- /dev/null
+++ b/icons/brand-gitlab.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-google-drive.svg b/icons/brand-google-drive.svg
new file mode 100644
index 000000000..e2002ba4d
--- /dev/null
+++ b/icons/brand-google-drive.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icons/brand-google.svg b/icons/brand-google.svg
new file mode 100644
index 000000000..6628055da
--- /dev/null
+++ b/icons/brand-google.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-instagram.svg b/icons/brand-instagram.svg
new file mode 100644
index 000000000..e44b029f9
--- /dev/null
+++ b/icons/brand-instagram.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icons/brand-opera.svg b/icons/brand-opera.svg
new file mode 100644
index 000000000..61856afc4
--- /dev/null
+++ b/icons/brand-opera.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/brand-paypal.svg b/icons/brand-paypal.svg
new file mode 100644
index 000000000..071ba27af
--- /dev/null
+++ b/icons/brand-paypal.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-safari.svg b/icons/brand-safari.svg
new file mode 100644
index 000000000..8bb221589
--- /dev/null
+++ b/icons/brand-safari.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/brand-sketch.svg b/icons/brand-sketch.svg
new file mode 100644
index 000000000..35a5de420
--- /dev/null
+++ b/icons/brand-sketch.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-snapchat.svg b/icons/brand-snapchat.svg
new file mode 100644
index 000000000..4c765b9a9
--- /dev/null
+++ b/icons/brand-snapchat.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-telegram.svg b/icons/brand-telegram.svg
new file mode 100644
index 000000000..3256e8f71
--- /dev/null
+++ b/icons/brand-telegram.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/brand-twitter.svg b/icons/brand-twitter.svg
new file mode 100644
index 000000000..83894403b
--- /dev/null
+++ b/icons/brand-twitter.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/building-community.svg b/icons/building-community.svg
new file mode 100644
index 000000000..85818095b
--- /dev/null
+++ b/icons/building-community.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/icons/building-pavilon.svg b/icons/building-pavilon.svg
new file mode 100644
index 000000000..422b9c3ce
--- /dev/null
+++ b/icons/building-pavilon.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/building-skyscrappers.svg b/icons/building-skyscrappers.svg
new file mode 100644
index 000000000..d481a6851
--- /dev/null
+++ b/icons/building-skyscrappers.svg
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/chrome.svg b/icons/chrome.svg
deleted file mode 100644
index 6e0f37f28..000000000
--- a/icons/chrome.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/icons/device-mobile-vibration.svg b/icons/device-mobile-vibration.svg
index 1e4be9a52..4e4612501 100644
--- a/icons/device-mobile-vibration.svg
+++ b/icons/device-mobile-vibration.svg
@@ -4,9 +4,9 @@
-
-
+
+
diff --git a/icons/device-watch.svg b/icons/device-watch.svg
new file mode 100644
index 000000000..2301288c8
--- /dev/null
+++ b/icons/device-watch.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icons/dice.svg b/icons/dice.svg
index 89b2cc769..efabd8726 100644
--- a/icons/dice.svg
+++ b/icons/dice.svg
@@ -1,10 +1,10 @@
-
-
-
-
+
+
+
+
diff --git a/icons/direction-horizontal.svg b/icons/direction-horizontal.svg
new file mode 100644
index 000000000..f2cc5f1de
--- /dev/null
+++ b/icons/direction-horizontal.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/direction.svg b/icons/direction.svg
new file mode 100644
index 000000000..4a962661a
--- /dev/null
+++ b/icons/direction.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/discount.svg b/icons/discount.svg
index 3dc9a05da..587e78a8b 100644
--- a/icons/discount.svg
+++ b/icons/discount.svg
@@ -1,8 +1,8 @@
-
-
+
+
diff --git a/icons/flame.svg b/icons/flame.svg
new file mode 100644
index 000000000..dd92d17bc
--- /dev/null
+++ b/icons/flame.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/grip-horizontal.svg b/icons/grip-horizontal.svg
new file mode 100644
index 000000000..fadb10be6
--- /dev/null
+++ b/icons/grip-horizontal.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/grip-vertical.svg b/icons/grip-vertical.svg
new file mode 100644
index 000000000..35d5eade5
--- /dev/null
+++ b/icons/grip-vertical.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/hand-middle-finger.svg b/icons/hand-middle-finger.svg
new file mode 100644
index 000000000..f7d4ea1e6
--- /dev/null
+++ b/icons/hand-middle-finger.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/hand-stop.svg b/icons/hand-stop.svg
new file mode 100644
index 000000000..c70955e6f
--- /dev/null
+++ b/icons/hand-stop.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/hexagon.svg b/icons/hexagon.svg
new file mode 100644
index 000000000..03bda9262
--- /dev/null
+++ b/icons/hexagon.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/language.svg b/icons/language.svg
index 8d3ac7a5d..3ba70da3d 100644
--- a/icons/language.svg
+++ b/icons/language.svg
@@ -1,6 +1,6 @@
-
+
diff --git a/icons/layout-cards.svg b/icons/layout-cards.svg
new file mode 100644
index 000000000..728d191e2
--- /dev/null
+++ b/icons/layout-cards.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/layout-list.svg b/icons/layout-list.svg
new file mode 100644
index 000000000..e1c3ce8f3
--- /dev/null
+++ b/icons/layout-list.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/medical-cross.svg b/icons/medical-cross.svg
new file mode 100644
index 000000000..28145014d
--- /dev/null
+++ b/icons/medical-cross.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/mist.svg b/icons/mist.svg
new file mode 100644
index 000000000..4ba680b2e
--- /dev/null
+++ b/icons/mist.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/mood-kid.svg b/icons/mood-kid.svg
new file mode 100644
index 000000000..d6b8da8ee
--- /dev/null
+++ b/icons/mood-kid.svg
@@ -0,0 +1,10 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/mood-suprised.svg b/icons/mood-suprised.svg
new file mode 100644
index 000000000..0f566a0c4
--- /dev/null
+++ b/icons/mood-suprised.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/mood-tongue.svg b/icons/mood-tongue.svg
index cea37d0ed..afe648189 100644
--- a/icons/mood-tongue.svg
+++ b/icons/mood-tongue.svg
@@ -3,7 +3,7 @@
-
+
diff --git a/icons/palette.svg b/icons/palette.svg
index d5bcc66ca..82a7eabab 100644
--- a/icons/palette.svg
+++ b/icons/palette.svg
@@ -1,9 +1,9 @@
-
-
-
+
+
+
diff --git a/icons/phone-call.svg b/icons/phone-call.svg
index 8add59c34..4d5bb5c7d 100644
--- a/icons/phone-call.svg
+++ b/icons/phone-call.svg
@@ -1,6 +1,6 @@
-
+
diff --git a/icons/phone-check.svg b/icons/phone-check.svg
new file mode 100644
index 000000000..b22c30598
--- /dev/null
+++ b/icons/phone-check.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/phone-incoming.svg b/icons/phone-incoming.svg
index 82480b946..6dccac812 100644
--- a/icons/phone-incoming.svg
+++ b/icons/phone-incoming.svg
@@ -1,8 +1,8 @@
-
-
-
+
+
+
diff --git a/icons/phone-outgoing.svg b/icons/phone-outgoing.svg
index 078e7080e..edda5796f 100644
--- a/icons/phone-outgoing.svg
+++ b/icons/phone-outgoing.svg
@@ -1,8 +1,8 @@
-
-
-
+
+
+
diff --git a/icons/phone-pause.svg b/icons/phone-pause.svg
index c3de0f633..32a357fe6 100644
--- a/icons/phone-pause.svg
+++ b/icons/phone-pause.svg
@@ -1,8 +1,8 @@
+
-
diff --git a/icons/phone-plus.svg b/icons/phone-plus.svg
new file mode 100644
index 000000000..ea50fe69b
--- /dev/null
+++ b/icons/phone-plus.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/phone-x.svg b/icons/phone-x.svg
new file mode 100644
index 000000000..0024b8c61
--- /dev/null
+++ b/icons/phone-x.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/phone.svg b/icons/phone.svg
index 65ed9b0ce..c11a912fa 100644
--- a/icons/phone.svg
+++ b/icons/phone.svg
@@ -1,6 +1,6 @@
-
+
diff --git a/icons/planet.svg b/icons/planet.svg
new file mode 100644
index 000000000..241579939
--- /dev/null
+++ b/icons/planet.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/rotate-rectangle.svg b/icons/rotate-rectangle.svg
new file mode 100644
index 000000000..08885dc77
--- /dev/null
+++ b/icons/rotate-rectangle.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/servicemark.svg b/icons/servicemark.svg
new file mode 100644
index 000000000..eabc9f7c6
--- /dev/null
+++ b/icons/servicemark.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/shirt.svg b/icons/shirt.svg
new file mode 100644
index 000000000..7ea6e1ffa
--- /dev/null
+++ b/icons/shirt.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/snowflake.svg b/icons/snowflake.svg
new file mode 100644
index 000000000..6e1e6671d
--- /dev/null
+++ b/icons/snowflake.svg
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/space.svg b/icons/space.svg
new file mode 100644
index 000000000..7dc1f535b
--- /dev/null
+++ b/icons/space.svg
@@ -0,0 +1,6 @@
+
+
+
+
+
+
diff --git a/icons/sunset.svg b/icons/sunset.svg
new file mode 100644
index 000000000..adbadc32d
--- /dev/null
+++ b/icons/sunset.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icons/sunshine.svg b/icons/sunshine.svg
new file mode 100644
index 000000000..acbbbc0a1
--- /dev/null
+++ b/icons/sunshine.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icons/tax.svg b/icons/tax.svg
index a2fca5990..563277375 100644
--- a/icons/tax.svg
+++ b/icons/tax.svg
@@ -1,8 +1,8 @@
-
-
+
+
diff --git a/icons/test.svg b/icons/test.svg
new file mode 100644
index 000000000..6810b8357
--- /dev/null
+++ b/icons/test.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/tractor.svg b/icons/tractor.svg
new file mode 100644
index 000000000..944da3bdc
--- /dev/null
+++ b/icons/tractor.svg
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/icons/trademark.svg b/icons/trademark.svg
new file mode 100644
index 000000000..62c705b3a
--- /dev/null
+++ b/icons/trademark.svg
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/icons/traffic-cone.svg b/icons/traffic-cone.svg
new file mode 100644
index 000000000..8ffca40c6
--- /dev/null
+++ b/icons/traffic-cone.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/trees.svg b/icons/trees.svg
new file mode 100644
index 000000000..8c5ee38f7
--- /dev/null
+++ b/icons/trees.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/user-exclamation.svg b/icons/user-exclamation.svg
new file mode 100644
index 000000000..4032121a9
--- /dev/null
+++ b/icons/user-exclamation.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/icons/user-plus.svg b/icons/user-plus.svg
index bf8c9434b..735439432 100644
--- a/icons/user-plus.svg
+++ b/icons/user-plus.svg
@@ -2,8 +2,7 @@
-
-
+
diff --git a/icons/wind.svg b/icons/wind.svg
new file mode 100644
index 000000000..eb704ad31
--- /dev/null
+++ b/icons/wind.svg
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
diff --git a/icons/yin-yang.svg b/icons/yin-yang.svg
new file mode 100644
index 000000000..cd3d36b9c
--- /dev/null
+++ b/icons/yin-yang.svg
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/package.json b/package.json
index 6e01c6c47..7f760956e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "tabler-icons",
- "version": "1.7.0",
+ "version": "1.10.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tabler/tabler-icons.git"
@@ -44,7 +44,7 @@
},
"release-it": {
"hooks": {
- "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version}",
+ "after:bump": "gulp build --latest-version ${latestVersion} --new-version ${version} --verbose",
"after:release": "echo Successfully released ${name} v${latestVersion} to ${repo.repository}."
},
"git": {
diff --git a/src/_icons/accessible.svg b/src/_icons/accessible.svg
index cfc363df7..e5cc45c62 100644
--- a/src/_icons/accessible.svg
+++ b/src/_icons/accessible.svg
@@ -4,5 +4,5 @@ tags: [low-vision, blind, disability, handicapped]
-
+
diff --git a/src/_icons/ball.svg b/src/_icons/ball-basketball.svg
similarity index 100%
rename from src/_icons/ball.svg
rename to src/_icons/ball-basketball.svg
diff --git a/src/_icons/ball-bowling.svg b/src/_icons/ball-bowling.svg
new file mode 100644
index 000000000..33718d611
--- /dev/null
+++ b/src/_icons/ball-bowling.svg
@@ -0,0 +1,8 @@
+---
+---
+
+
+
+
+
+
diff --git a/src/_icons/ball-tennis.svg b/src/_icons/ball-tennis.svg
new file mode 100644
index 000000000..d85ae52ce
--- /dev/null
+++ b/src/_icons/ball-tennis.svg
@@ -0,0 +1,8 @@
+---
+---
+
+
+ {% for i in (0..1) %}
+ 0 %} transform="rotate({{ i | times: 180 }} 12 12)"{% endif %} />
+ {% endfor %}
+
diff --git a/src/_icons/ball-volleyball.svg b/src/_icons/ball-volleyball.svg
new file mode 100644
index 000000000..181484ae4
--- /dev/null
+++ b/src/_icons/ball-volleyball.svg
@@ -0,0 +1,8 @@
+---
+---
+
+
+ {% for i in (0..2) %}
+ 0 %} transform="rotate({{ i | times: 120 }} 12 12)"{% endif %} />
+ {% endfor %}
+
diff --git a/src/_icons/brand-android.svg b/src/_icons/brand-android.svg
new file mode 100644
index 000000000..c1f74eea6
--- /dev/null
+++ b/src/_icons/brand-android.svg
@@ -0,0 +1,11 @@
+---
+---
+
+
+
+
+
+
+
+
+
diff --git a/src/_icons/brand-apple.svg b/src/_icons/brand-apple.svg
new file mode 100644
index 000000000..63ff60f5a
--- /dev/null
+++ b/src/_icons/brand-apple.svg
@@ -0,0 +1,6 @@
+---
+---
+
+
+
+
diff --git a/src/_icons/brand-chrome.svg b/src/_icons/brand-chrome.svg
new file mode 100644
index 000000000..5c9b71182
--- /dev/null
+++ b/src/_icons/brand-chrome.svg
@@ -0,0 +1,10 @@
+---
+tags: [browser, internet, web]
+---
+
+
+
+
+
+
+
diff --git a/src/_icons/dribbble.svg b/src/_icons/brand-dribbble.svg
similarity index 100%
rename from src/_icons/dribbble.svg
rename to src/_icons/brand-dribbble.svg
diff --git a/src/_icons/facebook.svg b/src/_icons/brand-facebook.svg
similarity index 100%
rename from src/_icons/facebook.svg
rename to src/_icons/brand-facebook.svg
diff --git a/src/_icons/brand-framer.svg b/src/_icons/brand-framer.svg
new file mode 100644
index 000000000..ed776b70c
--- /dev/null
+++ b/src/_icons/brand-framer.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/github.svg b/src/_icons/brand-github.svg
similarity index 100%
rename from src/_icons/github.svg
rename to src/_icons/brand-github.svg
diff --git a/src/_icons/brand-gitlab.svg b/src/_icons/brand-gitlab.svg
new file mode 100644
index 000000000..c7e5352c2
--- /dev/null
+++ b/src/_icons/brand-gitlab.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/brand-google-drive.svg b/src/_icons/brand-google-drive.svg
new file mode 100644
index 000000000..10d49d4e5
--- /dev/null
+++ b/src/_icons/brand-google-drive.svg
@@ -0,0 +1,7 @@
+---
+---
+
+
+
+
+
diff --git a/src/_icons/google.svg b/src/_icons/brand-google.svg
similarity index 100%
rename from src/_icons/google.svg
rename to src/_icons/brand-google.svg
diff --git a/src/_icons/brand-instagram.svg b/src/_icons/brand-instagram.svg
new file mode 100644
index 000000000..d760ed8b6
--- /dev/null
+++ b/src/_icons/brand-instagram.svg
@@ -0,0 +1,7 @@
+---
+---
+
+
+
+
+
diff --git a/src/_icons/brand-opera.svg b/src/_icons/brand-opera.svg
new file mode 100644
index 000000000..31b969c2b
--- /dev/null
+++ b/src/_icons/brand-opera.svg
@@ -0,0 +1,7 @@
+---
+tags: [navigation, compass, travel, direction, discover]
+---
+
+
+
+
diff --git a/src/_icons/brand-paypal.svg b/src/_icons/brand-paypal.svg
new file mode 100644
index 000000000..47312102b
--- /dev/null
+++ b/src/_icons/brand-paypal.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/brand-safari.svg b/src/_icons/brand-safari.svg
new file mode 100644
index 000000000..d977bfe77
--- /dev/null
+++ b/src/_icons/brand-safari.svg
@@ -0,0 +1,7 @@
+---
+tags: [navigation, compass, travel, direction, discover]
+---
+
+
+
+
diff --git a/src/_icons/brand-sketch.svg b/src/_icons/brand-sketch.svg
new file mode 100644
index 000000000..08d2e145a
--- /dev/null
+++ b/src/_icons/brand-sketch.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/brand-snapchat.svg b/src/_icons/brand-snapchat.svg
new file mode 100644
index 000000000..8d7f5d2d4
--- /dev/null
+++ b/src/_icons/brand-snapchat.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/brand-telegram.svg b/src/_icons/brand-telegram.svg
new file mode 100644
index 000000000..6b8f7ce28
--- /dev/null
+++ b/src/_icons/brand-telegram.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/twitter.svg b/src/_icons/brand-twitter.svg
similarity index 100%
rename from src/_icons/twitter.svg
rename to src/_icons/brand-twitter.svg
diff --git a/src/_icons/chrome.svg b/src/_icons/chrome.svg
deleted file mode 100644
index 5f571cb10..000000000
--- a/src/_icons/chrome.svg
+++ /dev/null
@@ -1,10 +0,0 @@
----
-tags: [browser, internet, web]
----
-
-
-
-
-
-
-
diff --git a/src/_icons/device-mobile-vibration.svg b/src/_icons/device-mobile-vibration.svg
index c0e67aab3..c4c46598d 100644
--- a/src/_icons/device-mobile-vibration.svg
+++ b/src/_icons/device-mobile-vibration.svg
@@ -6,7 +6,7 @@ tags: [iphone, phone, smartphone, cellphone]
-
-
+
+
diff --git a/src/_icons/dice.svg b/src/_icons/dice.svg
index f00f7ea8e..21f2ea262 100644
--- a/src/_icons/dice.svg
+++ b/src/_icons/dice.svg
@@ -3,8 +3,8 @@ tags: [game, boardgame, roll, throw, cube, numbers, gambling]
---
-
-
-
-
+
+
+
+
diff --git a/src/_icons/discount.svg b/src/_icons/discount.svg
index d4c464db6..2194ffecb 100644
--- a/src/_icons/discount.svg
+++ b/src/_icons/discount.svg
@@ -3,7 +3,7 @@ tags: [sale, reduction, price, cost, money, shopping, bargain]
---
-
-
+
+
diff --git a/src/_icons/flame.svg b/src/_icons/flame.svg
new file mode 100644
index 000000000..99b73b6a3
--- /dev/null
+++ b/src/_icons/flame.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/hand-middle-finger.svg b/src/_icons/hand-middle-finger.svg
new file mode 100644
index 000000000..c91fc76c4
--- /dev/null
+++ b/src/_icons/hand-middle-finger.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/hand-stop.svg b/src/_icons/hand-stop.svg
new file mode 100644
index 000000000..76af35cc5
--- /dev/null
+++ b/src/_icons/hand-stop.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/medical-cross.svg b/src/_icons/medical-cross.svg
new file mode 100644
index 000000000..3a9b1c85c
--- /dev/null
+++ b/src/_icons/medical-cross.svg
@@ -0,0 +1,5 @@
+---
+---
+
+
+
diff --git a/src/_icons/mist.svg b/src/_icons/mist.svg
new file mode 100644
index 000000000..d10c37f9f
--- /dev/null
+++ b/src/_icons/mist.svg
@@ -0,0 +1,8 @@
+---
+---
+
+
+
+
+
+
diff --git a/src/_icons/palette.svg b/src/_icons/palette.svg
index a792a8ace..0d14e9601 100644
--- a/src/_icons/palette.svg
+++ b/src/_icons/palette.svg
@@ -3,7 +3,7 @@ tags: [color, paint, painter, picture, board, artist]
---
-
-
-
+
+
+
diff --git a/src/_icons/sunset.svg b/src/_icons/sunset.svg
new file mode 100644
index 000000000..15b792a9e
--- /dev/null
+++ b/src/_icons/sunset.svg
@@ -0,0 +1,7 @@
+---
+---
+
+
+
+
+
diff --git a/src/_icons/sunshine.svg b/src/_icons/sunshine.svg
new file mode 100644
index 000000000..6890d4a31
--- /dev/null
+++ b/src/_icons/sunshine.svg
@@ -0,0 +1,7 @@
+---
+---
+
+
+
+
+
diff --git a/src/_icons/tax.svg b/src/_icons/tax.svg
index c7a544061..933085df2 100644
--- a/src/_icons/tax.svg
+++ b/src/_icons/tax.svg
@@ -3,7 +3,7 @@ tags: [income, percentage, money, finance, charge, obligation, taxpayer, vat]
---
-
-
+
+
diff --git a/src/_icons/wind.svg b/src/_icons/wind.svg
new file mode 100644
index 000000000..7c4ebec6b
--- /dev/null
+++ b/src/_icons/wind.svg
@@ -0,0 +1,7 @@
+---
+---
+
+
+
+
+
diff --git a/src/_icons/yin-yang.svg b/src/_icons/yin-yang.svg
new file mode 100644
index 000000000..c3bbdc779
--- /dev/null
+++ b/src/_icons/yin-yang.svg
@@ -0,0 +1,8 @@
+---
+---
+
+
+
+
+
+
diff --git a/tabler-sprite-nostroke.svg b/tabler-sprite-nostroke.svg
index cd8018ef5..29558de37 100644
--- a/tabler-sprite-nostroke.svg
+++ b/tabler-sprite-nostroke.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tabler-sprite.svg b/tabler-sprite.svg
index 0439d63a4..a5a4dfdd6 100644
--- a/tabler-sprite.svg
+++ b/tabler-sprite.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/tags.json b/tags.json
index 8ec42db96..e677fe5d2 100644
--- a/tags.json
+++ b/tags.json
@@ -11,6 +11,7 @@
"align-justified": ["align", "justified", "text", "alignment", "position"],
"align-left": ["align", "left", "text", "alignment", "position"],
"align-right": ["align", "right", "text", "alignment", "position"],
+ "ambulance": ["ambulance"],
"anchor": ["anchor", "hold", "ship", "harbor", "docks"],
"aperture": ["aperture", "hole", "opening", "vent"],
"apps": ["apps", "application", "add-on", "user", "download", "mobile"],
@@ -56,7 +57,10 @@
"atom": ["atom", "unit", "element", "part", "electrons"],
"award": ["award", "prize", "reward", "competition", "contest", "win"],
"backspace": ["backspace", "delete", "remove", "eliminate"],
- "ball": ["ball"],
+ "ball-basketball": ["ball", "basketball"],
+ "ball-bowling": ["ball", "bowling"],
+ "ball-tennis": ["ball", "tennis"],
+ "ball-volleyball": ["ball", "volleyball"],
"ban": ["ban", "no", "reject", "restriction", "prohibited"],
"bandage": ["bandage", "patch", "wound", "cut", "pain"],
"barcode": ["barcode", "product", "shop", "scan", "supermarket"],
@@ -89,6 +93,24 @@
"box": ["box", "cube", "app", "application", "package", "container"],
"braces": ["braces", "punctuation", "additional", "information"],
"brackets": ["brackets", "punctuation", "additional", "information"],
+ "brand-android": ["brand", "android"],
+ "brand-apple": ["brand", "apple"],
+ "brand-chrome": ["brand", "chrome", "browser", "internet", "web"],
+ "brand-dribbble": ["brand", "dribbble"],
+ "brand-facebook": ["brand", "facebook"],
+ "brand-framer": ["brand", "framer"],
+ "brand-github": ["brand", "github"],
+ "brand-gitlab": ["brand", "gitlab"],
+ "brand-google-drive": ["brand", "google", "drive"],
+ "brand-google": ["brand", "google"],
+ "brand-instagram": ["brand", "instagram"],
+ "brand-opera": ["brand", "opera", "navigation", "compass", "travel", "direction", "discover"],
+ "brand-paypal": ["brand", "paypal"],
+ "brand-safari": ["brand", "safari", "navigation", "compass", "travel", "direction", "discover"],
+ "brand-sketch": ["brand", "sketch"],
+ "brand-snapchat": ["brand", "snapchat"],
+ "brand-telegram": ["brand", "telegram"],
+ "brand-twitter": ["brand", "twitter"],
"briefcase": ["briefcase", "bag", "baggage", "folder", "carrier", "documents"],
"brightness-down": ["brightness", "down", "dark", "darker", "screen"],
"brightness-up": ["brightness", "up", "light", "screen"],
@@ -102,7 +124,10 @@
"building-bridge-2": ["building", "bridge", "2", "architecture", "urban", "river", "overpass", "city", "countryside"],
"building-bridge": ["building", "bridge", "architecture", "urban", "river", "overpass", "city", "countryside"],
"building-church": ["building", "church", "religion", "chapel", "sanctuary", "temple", "cathedral", "pray", "prayer"],
+ "building-community": ["building", "community"],
"building-hospital": ["building", "hospital", "doctor", "sickness", "illness", "nurse", "medication", "emergency", "treat", "surgery"],
+ "building-pavilon": ["building", "pavilon"],
+ "building-skyscrappers": ["building", "skyscrappers"],
"building-store": ["building", "store", "shopping", "shop", "supermarket", "market", "products", "retail", "buy", "sell"],
"building-warehouse": ["building", "warehouse"],
"building": ["building", "flat", "office", "city", "urban", "scyscraper", "architecture", "construction"],
@@ -140,7 +165,6 @@
"chevrons-left": ["chevrons", "left", "move", "back", "roll"],
"chevrons-right": ["chevrons", "right", "move", "next", "checklist"],
"chevrons-up": ["chevrons", "up", "move", "top"],
- "chrome": ["chrome", "browser", "internet", "web"],
"circle-check": ["circle", "check", "yes", "confirm"],
"circle-minus": ["circle", "minus", "remove", "delete"],
"circle-plus": ["circle", "plus", "add", "create", "new"],
@@ -196,9 +220,12 @@
"device-speaker": ["device", "speaker", "sound", "music", "loud", "audio", "media"],
"device-tablet": ["device", "tablet", "ipad", "mobile", "touchscreen", "portable"],
"device-tv": ["device", "tv", "screen", "display", "movie", "film", "watch", "audio", "video", "media"],
+ "device-watch": ["device", "watch"],
"devices": ["devices", "computer", "laptop", "notebook", "tablet", "phone", "mobile", "mac", "iphone"],
"diamond": ["diamond", "jewellery", "crystal", "mineral", "jewelry", "ring"],
"dice": ["dice", "game", "boardgame", "roll", "throw", "cube", "numbers", "gambling"],
+ "direction-horizontal": ["direction", "horizontal"],
+ "direction": ["direction"],
"directions": ["directions", "travel", "navigation", "discover"],
"disabled-2": ["disabled", "2", "wheelchair", "accessible", "handicapped"],
"disabled": ["disabled", "wheelchair", "handicapped"],
@@ -239,6 +266,7 @@
"fingerprint": ["fingerprint", "indentify", "mark", "surface", "security", "access"],
"firetruck": ["firetruck"],
"flag": ["flag", "banner", "pin", "report", "map"],
+ "flame": ["flame"],
"flask": ["flask", "liquid", "container", "glass", "chemistry"],
"flip-horizontal": ["flip", "horizontal", "mirror", "rotate"],
"flip-vertical": ["flip", "vertical", "mirror", "rotate"],
@@ -272,11 +300,16 @@
"globe": ["globe", "world", "travel", "journey", "trip", "planet", "earth"],
"grid-dots": ["grid", "dots", "network", "pattern", "layout"],
"grid": ["grid", "layout", "table", "network", "pattern"],
+ "grip-horizontal": ["grip", "horizontal"],
+ "grip-vertical": ["grip", "vertical"],
+ "hand-middle-finger": ["hand", "middle", "finger"],
+ "hand-stop": ["hand", "stop"],
"hash": ["hash", "hashtag", "#", "instagram"],
"headphones": ["headphones", "music", "headset", "audio", "sound"],
"headset": ["headset", "music", "headphones", "audio", "sound"],
"heart": ["heart", "love", "emotion", "like", "favorite", "relationship"],
"help": ["help", "tooltip", "assistance", "advice", "support"],
+ "hexagon": ["hexagon"],
"history": ["history"],
"home-2": ["home", "2", "house", "dashboard", "living", "building"],
"home": ["home", "house", "dashboard", "living", "building"],
@@ -304,9 +337,11 @@
"layout-align-right": ["layout", "align", "right", "position", "element", "design"],
"layout-align-top": ["layout", "align", "top", "position", "element", "design"],
"layout-bottombar": ["layout", "bottombar", "position", "element", "design", "grid", "footer"],
+ "layout-cards": ["layout", "cards"],
"layout-columns": ["layout", "columns", "grid", "column", "rows"],
"layout-distribute-horizontal": ["layout", "distribute", "horizontal", "position", "element", "design", "around"],
"layout-distribute-vertical": ["layout", "distribute", "vertical", "position", "element", "design", "around"],
+ "layout-list": ["layout", "list"],
"layout-navbar": ["layout", "navbar", "grid", "row", "header"],
"layout-rows": ["layout", "rows", "grid", "masonry", "collage"],
"layout-sidebar-right": ["layout", "sidebar", "right", "grid", "aside", "column", "columns"],
@@ -335,6 +370,7 @@
"map": ["map", "navigation", "location", "travel"],
"math": ["math"],
"maximize": ["maximize", "fullscreen"],
+ "medical-cross": ["medical", "cross"],
"menu": ["menu", "bars", "hamburger", "navigation", "burger"],
"message-2": ["message", "2", "comment", "chat", "reply"],
"message-circle": ["message", "circle", "comment", "chat", "reply"],
@@ -344,11 +380,14 @@
"microphone": ["microphone", "record", "sound", "listen"],
"minimize": ["minimize", "exit", "close"],
"minus": ["minus", "subtract", "less"],
+ "mist": ["mist"],
"mood-confuzed": ["mood", "confuzed", "face", "emoji", "emotion", "frown"],
"mood-happy": ["mood", "happy", "face", "emoji", "emotion"],
+ "mood-kid": ["mood", "kid", "face", "emoji", "emotion"],
"mood-neutral": ["mood", "neutral", "face", "emoji", "emotion"],
"mood-sad": ["mood", "sad", "face", "emoji", "emotion", "mad"],
"mood-smile": ["mood", "smile", "face", "emoji", "emotion"],
+ "mood-suprised": ["mood", "suprised", "face", "emoji", "emotion"],
"mood-tongue": ["mood", "tongue", "face", "emoji", "emotion"],
"moon": ["moon", "night", "dark mode"],
"mouse": ["mouse", "pointer", "cursor", "device"],
@@ -371,15 +410,19 @@
"parking": ["parking", "sign", "car", "vehicle", "space"],
"pencil": ["pencil"],
"phone-call": ["phone", "call", "ring", "mobile", "conversation", "answer", "dial", "landline"],
+ "phone-check": ["phone", "check", "ring", "mobile", "conversation", "answer", "dial", "landline"],
"phone-incoming": ["phone", "incoming", "call", "answer", "mobile", "landline", "conversation"],
"phone-outgoing": ["phone", "outgoing", "call", "signal", "mobile", "landline", "conversation"],
"phone-pause": ["phone", "pause", "call", "mute", "mobile", "landline", "conversation"],
+ "phone-plus": ["phone", "plus", "call", "signal", "mobile", "landline", "conversation"],
+ "phone-x": ["phone", "x", "ring", "mobile", "conversation", "answer", "dial", "landline"],
"phone": ["phone", "call", "mobile", "conversation", "landline", "answer", "number"],
"photo": ["photo", "image", "picture", "landscape", "camera"],
"pillow": ["pillow", "drug", "medication", "illness", "sickness", "doctor", "prescription"],
"plane-arrival": ["plane", "arrival", "travel", "land", "journey", "trip", "airport", "baggage", "luggage"],
"plane-departure": ["plane", "departure", "travel", "take off", "journey", "trip", "airport", "baggage", "luggage"],
"plane": ["plane", "travel", "journey", "trip", "airport", "baggage", "luggage"],
+ "planet": ["planet"],
"plug": ["plug", "electricity", "charger", "socket", "connection"],
"plus": ["plus", "add", "create", "new"],
"point": ["point", "dot", "label"],
@@ -399,6 +442,7 @@
"rotate-2": ["rotate", "2", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
"rotate-clockwise-2": ["rotate", "clockwise", "2", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
"rotate-clockwise": ["rotate", "clockwise", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
+ "rotate-rectangle": ["rotate", "rectangle"],
"rotate": ["rotate", "refresh", "synchronization", "reload", "restart", "spinner", "loader", "ajax", "update", "arrows"],
"route": ["route", "path", "navigation", "map"],
"router": ["router", "wifi", "device", "wireless", "signal", "station", "cast"],
@@ -412,19 +456,23 @@
"send": ["send", "message", "mail", "email", "gmail", "paper", "airplane", "aeroplane"],
"separator": ["separator", "divider", "space", "separate", "set apart"],
"server": ["server", "storage", "hosting", "www"],
+ "servicemark": ["servicemark"],
"settings": ["settings", "cog", "edit", "gear", "preferences", "tools"],
"shape": ["shape", "draw", "square", "form", "create", "outline"],
"share": ["share", "network", "link", "connection"],
"shield-check": ["shield", "check", "safety", "protect", "protection", "yes", "add"],
"shield-x": ["shield", "x", "unprotected", "protection", "cancel", "no"],
"shield": ["shield", "safety", "protect", "protection"],
+ "shirt": ["shirt"],
"shopping-cart": ["shopping", "cart", "bag", "ecommerce", "purchase", "store", "online"],
"sitemap": ["sitemap", "page", "webpage", "website", "list", "roadmap", "index"],
"slice": ["slice", "knife", "cut", "chop", "portion", "kitchen", "tool"],
"slideshow": ["slideshow", "photo", "picture", "video", "presentation", "camera", "display", "ad"],
+ "snowflake": ["snowflake"],
"social": ["social"],
"sort-ascending": ["sort", "ascending", "arrange"],
"sort-descending": ["sort", "descending", "arrange"],
+ "space": ["space"],
"square-check": ["square", "check", "checkbox", "yes"],
"square-minus": ["square", "minus", "remove", "indeterminate"],
"square-plus": ["square", "plus", "add", "create", "new"],
@@ -437,6 +485,8 @@
"subscript": ["subscript", "typography", "below", "formula", "maths", "fraction"],
"sum": ["sum", "equation", "add", "plus", "amount", "total"],
"sun": ["sun", "weather", "light", "mode", "brightness"],
+ "sunset": ["sunset"],
+ "sunshine": ["sunshine"],
"superscript": ["superscript", "typography", "above", "maths", "fraction", "trademark", "footer"],
"switch-horizontal": ["switch", "horizontal", "toggle", "left", "right", "arrows"],
"switch-vertical": ["switch", "vertical", "toggle", "up", "down", "arrows"],
@@ -454,6 +504,7 @@
"terminal-2": ["terminal", "2", "console", "command", "git", "command line", "command prompt"],
"terminal": ["terminal", "console", "command", "git", "command line", "command prompt"],
"test-pipe": ["test", "pipe", "sample", "color"],
+ "test": ["test"],
"text-wrap": ["text", "wrap", "text", "alignment", "position"],
"thumb-down": ["thumb", "down", "dislike", "bad", "emotion"],
"thumb-up": ["thumb", "up", "like", "emotion", "good", "love"],
@@ -463,7 +514,11 @@
"toggle-right": ["toggle", "right", "on", "off", "switch"],
"tool": ["tool", "preferences", "edit", "settings"],
"tools": ["tools", "preferences", "edit", "settings"],
+ "tractor": ["tractor"],
+ "trademark": ["trademark"],
+ "traffic-cone": ["traffic", "cone"],
"trash": ["trash", "garbage", "delete", "remove", "bin", "ash-bin", "uninstall", "dustbin"],
+ "trees": ["trees"],
"trending-down": ["trending", "down", "arrow", "decrease", "fall"],
"trending-up": ["trending", "up", "arrow", "grow", "increase"],
"triangle": ["triangle", "delta"],
@@ -476,6 +531,7 @@
"upload": ["upload", "file", "arrow"],
"urgent": ["urgent", "alert", "important"],
"user-check": ["user", "check", "tick", "person", "account"],
+ "user-exclamation": ["user", "exclamation"],
"user-minus": ["user", "minus", "remove", "cancel", "person", "account", "unsubscribe"],
"user-plus": ["user", "plus", "add", "create", "new", "person", "people", "follow", "subscribe"],
"user-x": ["user", "x", "cancel", "remove", "person", "account", "unsubscribe"],
@@ -494,9 +550,11 @@
"wifi-1": ["wifi", "1", "online", "connection", "signal", "wireless"],
"wifi-2": ["wifi", "2", "online", "connection", "signal", "wireless"],
"wifi": ["wifi", "online", "connection", "signal", "wireless"],
+ "wind": ["wind"],
"woman": ["woman", "girl", "female", "gender"],
"world": ["world", "earth", "globe", "global", "language", "union"],
"x": ["x", "cancel", "remove", "delete", "empty"],
+ "yin-yang": ["yin", "yang"],
"zoom-in": ["zoom", "in", "magnifying glass"],
"zoom-out": ["zoom", "out", "magnifying glass"]
}