@tabler/icons-webfont 2.45.0 → 2.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fonts/tabler-icons.eot +0 -0
- package/fonts/tabler-icons.ttf +0 -0
- package/fonts/tabler-icons.woff +0 -0
- package/fonts/tabler-icons.woff2 +0 -0
- package/package.json +2 -2
- package/tabler-icons.css +147 -3
- package/tabler-icons.css.map +1 -1
- package/tabler-icons.html +326 -2
- package/tabler-icons.min.css +2 -2
- package/tabler-icons.min.css.map +1 -1
- package/tabler-icons.scss +77 -5
package/tabler-icons.scss
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* Tabler Icons 2.
|
|
3
|
+
* Tabler Icons 2.47.0 by tabler - https://tabler.io
|
|
4
4
|
* License - https://github.com/tabler/tabler-icons/blob/master/LICENSE
|
|
5
5
|
*/
|
|
6
6
|
$ti-font-family: 'tabler-icons' !default;
|
|
@@ -13,11 +13,11 @@ $ti-prefix: 'ti' !default;
|
|
|
13
13
|
font-style: normal;
|
|
14
14
|
font-weight: 400;
|
|
15
15
|
font-display: $ti-font-display;
|
|
16
|
-
src: url('#{$ti-font-path}/tabler-icons.eot?v2.
|
|
17
|
-
src: url('#{$ti-font-path}/tabler-icons.eot?#iefix-v2.
|
|
18
|
-
url('#{$ti-font-path}/tabler-icons.woff2?v2.
|
|
16
|
+
src: url('#{$ti-font-path}/tabler-icons.eot?v2.47.0');
|
|
17
|
+
src: url('#{$ti-font-path}/tabler-icons.eot?#iefix-v2.47.0') format('embedded-opentype'),
|
|
18
|
+
url('#{$ti-font-path}/tabler-icons.woff2?v2.47.0') format('woff2'),
|
|
19
19
|
url('#{$ti-font-path}/tabler-icons.woff?') format('woff'),
|
|
20
|
-
url('#{$ti-font-path}/tabler-icons.ttf?v2.
|
|
20
|
+
url('#{$ti-font-path}/tabler-icons.ttf?v2.47.0') format('truetype');
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.#{$ti-prefix} {
|
|
@@ -273,6 +273,7 @@ $ti-icon-arrow-curve-right: unicode('f049');
|
|
|
273
273
|
$ti-icon-arrow-down: unicode('ea16');
|
|
274
274
|
$ti-icon-arrow-down-bar: unicode('ed98');
|
|
275
275
|
$ti-icon-arrow-down-circle: unicode('ea11');
|
|
276
|
+
$ti-icon-arrow-down-from-arc: unicode('fd86');
|
|
276
277
|
$ti-icon-arrow-down-left: unicode('ea13');
|
|
277
278
|
$ti-icon-arrow-down-left-circle: unicode('ea12');
|
|
278
279
|
$ti-icon-arrow-down-rhombus: unicode('f61d');
|
|
@@ -280,6 +281,7 @@ $ti-icon-arrow-down-right: unicode('ea15');
|
|
|
280
281
|
$ti-icon-arrow-down-right-circle: unicode('ea14');
|
|
281
282
|
$ti-icon-arrow-down-square: unicode('ed9a');
|
|
282
283
|
$ti-icon-arrow-down-tail: unicode('ed9b');
|
|
284
|
+
$ti-icon-arrow-down-to-arc: unicode('fd87');
|
|
283
285
|
$ti-icon-arrow-elbow-left: unicode('f9ed');
|
|
284
286
|
$ti-icon-arrow-elbow-right: unicode('f9ee');
|
|
285
287
|
$ti-icon-arrow-fork: unicode('f04a');
|
|
@@ -291,10 +293,12 @@ $ti-icon-arrow-iteration: unicode('f578');
|
|
|
291
293
|
$ti-icon-arrow-left: unicode('ea19');
|
|
292
294
|
$ti-icon-arrow-left-bar: unicode('ed9c');
|
|
293
295
|
$ti-icon-arrow-left-circle: unicode('ea18');
|
|
296
|
+
$ti-icon-arrow-left-from-arc: unicode('fd88');
|
|
294
297
|
$ti-icon-arrow-left-rhombus: unicode('f61e');
|
|
295
298
|
$ti-icon-arrow-left-right: unicode('f04b');
|
|
296
299
|
$ti-icon-arrow-left-square: unicode('ed9d');
|
|
297
300
|
$ti-icon-arrow-left-tail: unicode('ed9e');
|
|
301
|
+
$ti-icon-arrow-left-to-arc: unicode('fd89');
|
|
298
302
|
$ti-icon-arrow-loop-left: unicode('ed9f');
|
|
299
303
|
$ti-icon-arrow-loop-left-2: unicode('f04c');
|
|
300
304
|
$ti-icon-arrow-loop-right: unicode('eda0');
|
|
@@ -322,9 +326,11 @@ $ti-icon-arrow-ramp-right-3: unicode('f052');
|
|
|
322
326
|
$ti-icon-arrow-right: unicode('ea1f');
|
|
323
327
|
$ti-icon-arrow-right-bar: unicode('eda1');
|
|
324
328
|
$ti-icon-arrow-right-circle: unicode('ea1e');
|
|
329
|
+
$ti-icon-arrow-right-from-arc: unicode('fd8a');
|
|
325
330
|
$ti-icon-arrow-right-rhombus: unicode('f61f');
|
|
326
331
|
$ti-icon-arrow-right-square: unicode('eda2');
|
|
327
332
|
$ti-icon-arrow-right-tail: unicode('eda3');
|
|
333
|
+
$ti-icon-arrow-right-to-arc: unicode('fd8b');
|
|
328
334
|
$ti-icon-arrow-rotary-first-left: unicode('f053');
|
|
329
335
|
$ti-icon-arrow-rotary-first-right: unicode('f054');
|
|
330
336
|
$ti-icon-arrow-rotary-last-left: unicode('f055');
|
|
@@ -339,6 +345,7 @@ $ti-icon-arrow-sharp-turn-right: unicode('f05b');
|
|
|
339
345
|
$ti-icon-arrow-up: unicode('ea25');
|
|
340
346
|
$ti-icon-arrow-up-bar: unicode('eda4');
|
|
341
347
|
$ti-icon-arrow-up-circle: unicode('ea20');
|
|
348
|
+
$ti-icon-arrow-up-from-arc: unicode('fd8c');
|
|
342
349
|
$ti-icon-arrow-up-left: unicode('ea22');
|
|
343
350
|
$ti-icon-arrow-up-left-circle: unicode('ea21');
|
|
344
351
|
$ti-icon-arrow-up-rhombus: unicode('f620');
|
|
@@ -346,6 +353,7 @@ $ti-icon-arrow-up-right: unicode('ea24');
|
|
|
346
353
|
$ti-icon-arrow-up-right-circle: unicode('ea23');
|
|
347
354
|
$ti-icon-arrow-up-square: unicode('eda6');
|
|
348
355
|
$ti-icon-arrow-up-tail: unicode('eda7');
|
|
356
|
+
$ti-icon-arrow-up-to-arc: unicode('fd8d');
|
|
349
357
|
$ti-icon-arrow-wave-left-down: unicode('eda8');
|
|
350
358
|
$ti-icon-arrow-wave-left-up: unicode('eda9');
|
|
351
359
|
$ti-icon-arrow-wave-right-down: unicode('edaa');
|
|
@@ -416,6 +424,7 @@ $ti-icon-augmented-reality: unicode('f023');
|
|
|
416
424
|
$ti-icon-augmented-reality-2: unicode('f37e');
|
|
417
425
|
$ti-icon-augmented-reality-off: unicode('f3c1');
|
|
418
426
|
$ti-icon-automatic-gearbox: unicode('fc89');
|
|
427
|
+
$ti-icon-avocado: unicode('fd8e');
|
|
419
428
|
$ti-icon-award: unicode('ea2c');
|
|
420
429
|
$ti-icon-award-filled: unicode('f71c');
|
|
421
430
|
$ti-icon-award-off: unicode('f0fa');
|
|
@@ -436,6 +445,7 @@ $ti-icon-badge-3d: unicode('f555');
|
|
|
436
445
|
$ti-icon-badge-4k: unicode('f556');
|
|
437
446
|
$ti-icon-badge-8k: unicode('f557');
|
|
438
447
|
$ti-icon-badge-ad: unicode('f558');
|
|
448
|
+
$ti-icon-badge-ad-off: unicode('fd8f');
|
|
439
449
|
$ti-icon-badge-ar: unicode('f559');
|
|
440
450
|
$ti-icon-badge-cc: unicode('f55a');
|
|
441
451
|
$ti-icon-badge-filled: unicode('f667');
|
|
@@ -621,6 +631,7 @@ $ti-icon-books: unicode('eff2');
|
|
|
621
631
|
$ti-icon-books-off: unicode('f0be');
|
|
622
632
|
$ti-icon-border-all: unicode('ea3b');
|
|
623
633
|
$ti-icon-border-bottom: unicode('ea3c');
|
|
634
|
+
$ti-icon-border-corner-ios: unicode('fd98');
|
|
624
635
|
$ti-icon-border-corner-pill: unicode('fd62');
|
|
625
636
|
$ti-icon-border-corner-rounded: unicode('fd63');
|
|
626
637
|
$ti-icon-border-corner-square: unicode('fd64');
|
|
@@ -646,7 +657,9 @@ $ti-icon-bounce-right: unicode('f59e');
|
|
|
646
657
|
$ti-icon-bounce-right-filled: unicode('fb21');
|
|
647
658
|
$ti-icon-bow: unicode('f096');
|
|
648
659
|
$ti-icon-bowl: unicode('f4fa');
|
|
660
|
+
$ti-icon-bowl-chopsticks: unicode('fd90');
|
|
649
661
|
$ti-icon-bowl-filled: unicode('fb22');
|
|
662
|
+
$ti-icon-bowl-spoon: unicode('fd91');
|
|
650
663
|
$ti-icon-box: unicode('ea45');
|
|
651
664
|
$ti-icon-box-align-bottom: unicode('f2a8');
|
|
652
665
|
$ti-icon-box-align-bottom-filled: unicode('fa8a');
|
|
@@ -1068,6 +1081,7 @@ $ti-icon-briefcase-filled: unicode('fd00');
|
|
|
1068
1081
|
$ti-icon-briefcase-off: unicode('f3cc');
|
|
1069
1082
|
$ti-icon-brightness: unicode('eb7f');
|
|
1070
1083
|
$ti-icon-brightness-2: unicode('ee19');
|
|
1084
|
+
$ti-icon-brightness-auto: unicode('fd99');
|
|
1071
1085
|
$ti-icon-brightness-down: unicode('eb7d');
|
|
1072
1086
|
$ti-icon-brightness-down-filled: unicode('fb23');
|
|
1073
1087
|
$ti-icon-brightness-half: unicode('ee1a');
|
|
@@ -1305,6 +1319,8 @@ $ti-icon-chart-pie-off: unicode('f3d3');
|
|
|
1305
1319
|
$ti-icon-chart-ppf: unicode('f618');
|
|
1306
1320
|
$ti-icon-chart-radar: unicode('ed77');
|
|
1307
1321
|
$ti-icon-chart-sankey: unicode('f619');
|
|
1322
|
+
$ti-icon-chart-scatter: unicode('fd93');
|
|
1323
|
+
$ti-icon-chart-scatter-3d: unicode('fd92');
|
|
1308
1324
|
$ti-icon-chart-treemap: unicode('f381');
|
|
1309
1325
|
$ti-icon-check: unicode('ea5e');
|
|
1310
1326
|
$ti-icon-checkbox: unicode('eba6');
|
|
@@ -1498,6 +1514,7 @@ $ti-icon-clipboard-heart: unicode('f34e');
|
|
|
1498
1514
|
$ti-icon-clipboard-list: unicode('ea6d');
|
|
1499
1515
|
$ti-icon-clipboard-off: unicode('f0ce');
|
|
1500
1516
|
$ti-icon-clipboard-plus: unicode('efb2');
|
|
1517
|
+
$ti-icon-clipboard-smile: unicode('fd9a');
|
|
1501
1518
|
$ti-icon-clipboard-text: unicode('f089');
|
|
1502
1519
|
$ti-icon-clipboard-typography: unicode('f34f');
|
|
1503
1520
|
$ti-icon-clipboard-x: unicode('ea6e');
|
|
@@ -1815,6 +1832,7 @@ $ti-icon-database-off: unicode('ee70');
|
|
|
1815
1832
|
$ti-icon-database-plus: unicode('fa17');
|
|
1816
1833
|
$ti-icon-database-search: unicode('fa18');
|
|
1817
1834
|
$ti-icon-database-share: unicode('fa19');
|
|
1835
|
+
$ti-icon-database-smile: unicode('fd9b');
|
|
1818
1836
|
$ti-icon-database-star: unicode('fa1a');
|
|
1819
1837
|
$ti-icon-database-x: unicode('fa1b');
|
|
1820
1838
|
$ti-icon-decimal: unicode('fa26');
|
|
@@ -2522,8 +2540,11 @@ $ti-icon-git-pull-request-closed: unicode('ef7f');
|
|
|
2522
2540
|
$ti-icon-git-pull-request-draft: unicode('efb7');
|
|
2523
2541
|
$ti-icon-gizmo: unicode('f02b');
|
|
2524
2542
|
$ti-icon-glass: unicode('eab8');
|
|
2543
|
+
$ti-icon-glass-champagne: unicode('fd9c');
|
|
2544
|
+
$ti-icon-glass-cocktail: unicode('fd9d');
|
|
2525
2545
|
$ti-icon-glass-full: unicode('eab7');
|
|
2526
2546
|
$ti-icon-glass-full-filled: unicode('fc2e');
|
|
2547
|
+
$ti-icon-glass-gin: unicode('fd9e');
|
|
2527
2548
|
$ti-icon-glass-off: unicode('ee91');
|
|
2528
2549
|
$ti-icon-globe: unicode('eab9');
|
|
2529
2550
|
$ti-icon-globe-filled: unicode('fc2f');
|
|
@@ -2777,6 +2798,7 @@ $ti-icon-id-badge: unicode('eff7');
|
|
|
2777
2798
|
$ti-icon-id-badge-2: unicode('f076');
|
|
2778
2799
|
$ti-icon-id-badge-off: unicode('f3fd');
|
|
2779
2800
|
$ti-icon-id-off: unicode('f149');
|
|
2801
|
+
$ti-icon-image-in-picture: unicode('fd9f');
|
|
2780
2802
|
$ti-icon-inbox: unicode('eac4');
|
|
2781
2803
|
$ti-icon-inbox-off: unicode('f14a');
|
|
2782
2804
|
$ti-icon-indent-decrease: unicode('eb91');
|
|
@@ -3204,6 +3226,7 @@ $ti-icon-math-integral-x: unicode('f4e8');
|
|
|
3204
3226
|
$ti-icon-math-integrals: unicode('f4ea');
|
|
3205
3227
|
$ti-icon-math-lower: unicode('f4eb');
|
|
3206
3228
|
$ti-icon-math-max: unicode('f0f5');
|
|
3229
|
+
$ti-icon-math-max-min: unicode('fda0');
|
|
3207
3230
|
$ti-icon-math-min: unicode('f0f6');
|
|
3208
3231
|
$ti-icon-math-not: unicode('f4ec');
|
|
3209
3232
|
$ti-icon-math-off: unicode('f409');
|
|
@@ -3831,6 +3854,7 @@ $ti-icon-progress-down: unicode('fa0a');
|
|
|
3831
3854
|
$ti-icon-progress-help: unicode('fa0b');
|
|
3832
3855
|
$ti-icon-progress-x: unicode('fa0c');
|
|
3833
3856
|
$ti-icon-prompt: unicode('eb0f');
|
|
3857
|
+
$ti-icon-prong: unicode('fda1');
|
|
3834
3858
|
$ti-icon-propeller: unicode('eec4');
|
|
3835
3859
|
$ti-icon-propeller-off: unicode('f185');
|
|
3836
3860
|
$ti-icon-protocol: unicode('fd81');
|
|
@@ -4140,6 +4164,7 @@ $ti-icon-shopping-bag-check: unicode('fc16');
|
|
|
4140
4164
|
$ti-icon-shopping-bag-discount: unicode('fc17');
|
|
4141
4165
|
$ti-icon-shopping-bag-edit: unicode('fc18');
|
|
4142
4166
|
$ti-icon-shopping-bag-exclamation: unicode('fc19');
|
|
4167
|
+
$ti-icon-shopping-bag-heart: unicode('fda2');
|
|
4143
4168
|
$ti-icon-shopping-bag-minus: unicode('fc1a');
|
|
4144
4169
|
$ti-icon-shopping-bag-plus: unicode('fc1b');
|
|
4145
4170
|
$ti-icon-shopping-bag-search: unicode('fc1c');
|
|
@@ -4225,10 +4250,14 @@ $ti-icon-sort-ascending: unicode('eb26');
|
|
|
4225
4250
|
$ti-icon-sort-ascending-2: unicode('eee2');
|
|
4226
4251
|
$ti-icon-sort-ascending-letters: unicode('ef18');
|
|
4227
4252
|
$ti-icon-sort-ascending-numbers: unicode('ef19');
|
|
4253
|
+
$ti-icon-sort-ascending-shapes: unicode('fd94');
|
|
4254
|
+
$ti-icon-sort-ascending-small-big: unicode('fd95');
|
|
4255
|
+
$ti-icon-sort-deacending-small-big: unicode('fd96');
|
|
4228
4256
|
$ti-icon-sort-descending: unicode('eb27');
|
|
4229
4257
|
$ti-icon-sort-descending-2: unicode('eee3');
|
|
4230
4258
|
$ti-icon-sort-descending-letters: unicode('ef1a');
|
|
4231
4259
|
$ti-icon-sort-descending-numbers: unicode('ef1b');
|
|
4260
|
+
$ti-icon-sort-descending-shapes: unicode('fd97');
|
|
4232
4261
|
$ti-icon-sort-z-a: unicode('f550');
|
|
4233
4262
|
$ti-icon-sos: unicode('f24a');
|
|
4234
4263
|
$ti-icon-soup: unicode('ef2e');
|
|
@@ -4566,6 +4595,8 @@ $ti-icon-temperature-fahrenheit: unicode('eb37');
|
|
|
4566
4595
|
$ti-icon-temperature-minus: unicode('ebed');
|
|
4567
4596
|
$ti-icon-temperature-off: unicode('f1af');
|
|
4568
4597
|
$ti-icon-temperature-plus: unicode('ebee');
|
|
4598
|
+
$ti-icon-temperature-snow: unicode('fda3');
|
|
4599
|
+
$ti-icon-temperature-sun: unicode('fda4');
|
|
4569
4600
|
$ti-icon-template: unicode('eb39');
|
|
4570
4601
|
$ti-icon-template-off: unicode('f1b0');
|
|
4571
4602
|
$ti-icon-tent: unicode('eefb');
|
|
@@ -4679,6 +4710,11 @@ $ti-icon-transfer-out: unicode('ef30');
|
|
|
4679
4710
|
$ti-icon-transfer-vertical: unicode('fc1e');
|
|
4680
4711
|
$ti-icon-transform: unicode('f38e');
|
|
4681
4712
|
$ti-icon-transform-filled: unicode('f6ac');
|
|
4713
|
+
$ti-icon-transform-point: unicode('fda9');
|
|
4714
|
+
$ti-icon-transform-point-bottom-left: unicode('fda5');
|
|
4715
|
+
$ti-icon-transform-point-bottom-right: unicode('fda6');
|
|
4716
|
+
$ti-icon-transform-point-top-left: unicode('fda7');
|
|
4717
|
+
$ti-icon-transform-point-top-right: unicode('fda8');
|
|
4682
4718
|
$ti-icon-transition-bottom: unicode('f2b2');
|
|
4683
4719
|
$ti-icon-transition-left: unicode('f2b3');
|
|
4684
4720
|
$ti-icon-transition-right: unicode('f2b4');
|
|
@@ -5201,6 +5237,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5201
5237
|
.#{$ti-prefix}-arrow-down:before { content: $ti-icon-arrow-down; }
|
|
5202
5238
|
.#{$ti-prefix}-arrow-down-bar:before { content: $ti-icon-arrow-down-bar; }
|
|
5203
5239
|
.#{$ti-prefix}-arrow-down-circle:before { content: $ti-icon-arrow-down-circle; }
|
|
5240
|
+
.#{$ti-prefix}-arrow-down-from-arc:before { content: $ti-icon-arrow-down-from-arc; }
|
|
5204
5241
|
.#{$ti-prefix}-arrow-down-left:before { content: $ti-icon-arrow-down-left; }
|
|
5205
5242
|
.#{$ti-prefix}-arrow-down-left-circle:before { content: $ti-icon-arrow-down-left-circle; }
|
|
5206
5243
|
.#{$ti-prefix}-arrow-down-rhombus:before { content: $ti-icon-arrow-down-rhombus; }
|
|
@@ -5208,6 +5245,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5208
5245
|
.#{$ti-prefix}-arrow-down-right-circle:before { content: $ti-icon-arrow-down-right-circle; }
|
|
5209
5246
|
.#{$ti-prefix}-arrow-down-square:before { content: $ti-icon-arrow-down-square; }
|
|
5210
5247
|
.#{$ti-prefix}-arrow-down-tail:before { content: $ti-icon-arrow-down-tail; }
|
|
5248
|
+
.#{$ti-prefix}-arrow-down-to-arc:before { content: $ti-icon-arrow-down-to-arc; }
|
|
5211
5249
|
.#{$ti-prefix}-arrow-elbow-left:before { content: $ti-icon-arrow-elbow-left; }
|
|
5212
5250
|
.#{$ti-prefix}-arrow-elbow-right:before { content: $ti-icon-arrow-elbow-right; }
|
|
5213
5251
|
.#{$ti-prefix}-arrow-fork:before { content: $ti-icon-arrow-fork; }
|
|
@@ -5219,10 +5257,12 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5219
5257
|
.#{$ti-prefix}-arrow-left:before { content: $ti-icon-arrow-left; }
|
|
5220
5258
|
.#{$ti-prefix}-arrow-left-bar:before { content: $ti-icon-arrow-left-bar; }
|
|
5221
5259
|
.#{$ti-prefix}-arrow-left-circle:before { content: $ti-icon-arrow-left-circle; }
|
|
5260
|
+
.#{$ti-prefix}-arrow-left-from-arc:before { content: $ti-icon-arrow-left-from-arc; }
|
|
5222
5261
|
.#{$ti-prefix}-arrow-left-rhombus:before { content: $ti-icon-arrow-left-rhombus; }
|
|
5223
5262
|
.#{$ti-prefix}-arrow-left-right:before { content: $ti-icon-arrow-left-right; }
|
|
5224
5263
|
.#{$ti-prefix}-arrow-left-square:before { content: $ti-icon-arrow-left-square; }
|
|
5225
5264
|
.#{$ti-prefix}-arrow-left-tail:before { content: $ti-icon-arrow-left-tail; }
|
|
5265
|
+
.#{$ti-prefix}-arrow-left-to-arc:before { content: $ti-icon-arrow-left-to-arc; }
|
|
5226
5266
|
.#{$ti-prefix}-arrow-loop-left:before { content: $ti-icon-arrow-loop-left; }
|
|
5227
5267
|
.#{$ti-prefix}-arrow-loop-left-2:before { content: $ti-icon-arrow-loop-left-2; }
|
|
5228
5268
|
.#{$ti-prefix}-arrow-loop-right:before { content: $ti-icon-arrow-loop-right; }
|
|
@@ -5250,9 +5290,11 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5250
5290
|
.#{$ti-prefix}-arrow-right:before { content: $ti-icon-arrow-right; }
|
|
5251
5291
|
.#{$ti-prefix}-arrow-right-bar:before { content: $ti-icon-arrow-right-bar; }
|
|
5252
5292
|
.#{$ti-prefix}-arrow-right-circle:before { content: $ti-icon-arrow-right-circle; }
|
|
5293
|
+
.#{$ti-prefix}-arrow-right-from-arc:before { content: $ti-icon-arrow-right-from-arc; }
|
|
5253
5294
|
.#{$ti-prefix}-arrow-right-rhombus:before { content: $ti-icon-arrow-right-rhombus; }
|
|
5254
5295
|
.#{$ti-prefix}-arrow-right-square:before { content: $ti-icon-arrow-right-square; }
|
|
5255
5296
|
.#{$ti-prefix}-arrow-right-tail:before { content: $ti-icon-arrow-right-tail; }
|
|
5297
|
+
.#{$ti-prefix}-arrow-right-to-arc:before { content: $ti-icon-arrow-right-to-arc; }
|
|
5256
5298
|
.#{$ti-prefix}-arrow-rotary-first-left:before { content: $ti-icon-arrow-rotary-first-left; }
|
|
5257
5299
|
.#{$ti-prefix}-arrow-rotary-first-right:before { content: $ti-icon-arrow-rotary-first-right; }
|
|
5258
5300
|
.#{$ti-prefix}-arrow-rotary-last-left:before { content: $ti-icon-arrow-rotary-last-left; }
|
|
@@ -5267,6 +5309,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5267
5309
|
.#{$ti-prefix}-arrow-up:before { content: $ti-icon-arrow-up; }
|
|
5268
5310
|
.#{$ti-prefix}-arrow-up-bar:before { content: $ti-icon-arrow-up-bar; }
|
|
5269
5311
|
.#{$ti-prefix}-arrow-up-circle:before { content: $ti-icon-arrow-up-circle; }
|
|
5312
|
+
.#{$ti-prefix}-arrow-up-from-arc:before { content: $ti-icon-arrow-up-from-arc; }
|
|
5270
5313
|
.#{$ti-prefix}-arrow-up-left:before { content: $ti-icon-arrow-up-left; }
|
|
5271
5314
|
.#{$ti-prefix}-arrow-up-left-circle:before { content: $ti-icon-arrow-up-left-circle; }
|
|
5272
5315
|
.#{$ti-prefix}-arrow-up-rhombus:before { content: $ti-icon-arrow-up-rhombus; }
|
|
@@ -5274,6 +5317,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5274
5317
|
.#{$ti-prefix}-arrow-up-right-circle:before { content: $ti-icon-arrow-up-right-circle; }
|
|
5275
5318
|
.#{$ti-prefix}-arrow-up-square:before { content: $ti-icon-arrow-up-square; }
|
|
5276
5319
|
.#{$ti-prefix}-arrow-up-tail:before { content: $ti-icon-arrow-up-tail; }
|
|
5320
|
+
.#{$ti-prefix}-arrow-up-to-arc:before { content: $ti-icon-arrow-up-to-arc; }
|
|
5277
5321
|
.#{$ti-prefix}-arrow-wave-left-down:before { content: $ti-icon-arrow-wave-left-down; }
|
|
5278
5322
|
.#{$ti-prefix}-arrow-wave-left-up:before { content: $ti-icon-arrow-wave-left-up; }
|
|
5279
5323
|
.#{$ti-prefix}-arrow-wave-right-down:before { content: $ti-icon-arrow-wave-right-down; }
|
|
@@ -5344,6 +5388,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5344
5388
|
.#{$ti-prefix}-augmented-reality-2:before { content: $ti-icon-augmented-reality-2; }
|
|
5345
5389
|
.#{$ti-prefix}-augmented-reality-off:before { content: $ti-icon-augmented-reality-off; }
|
|
5346
5390
|
.#{$ti-prefix}-automatic-gearbox:before { content: $ti-icon-automatic-gearbox; }
|
|
5391
|
+
.#{$ti-prefix}-avocado:before { content: $ti-icon-avocado; }
|
|
5347
5392
|
.#{$ti-prefix}-award:before { content: $ti-icon-award; }
|
|
5348
5393
|
.#{$ti-prefix}-award-filled:before { content: $ti-icon-award-filled; }
|
|
5349
5394
|
.#{$ti-prefix}-award-off:before { content: $ti-icon-award-off; }
|
|
@@ -5364,6 +5409,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5364
5409
|
.#{$ti-prefix}-badge-4k:before { content: $ti-icon-badge-4k; }
|
|
5365
5410
|
.#{$ti-prefix}-badge-8k:before { content: $ti-icon-badge-8k; }
|
|
5366
5411
|
.#{$ti-prefix}-badge-ad:before { content: $ti-icon-badge-ad; }
|
|
5412
|
+
.#{$ti-prefix}-badge-ad-off:before { content: $ti-icon-badge-ad-off; }
|
|
5367
5413
|
.#{$ti-prefix}-badge-ar:before { content: $ti-icon-badge-ar; }
|
|
5368
5414
|
.#{$ti-prefix}-badge-cc:before { content: $ti-icon-badge-cc; }
|
|
5369
5415
|
.#{$ti-prefix}-badge-filled:before { content: $ti-icon-badge-filled; }
|
|
@@ -5549,6 +5595,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5549
5595
|
.#{$ti-prefix}-books-off:before { content: $ti-icon-books-off; }
|
|
5550
5596
|
.#{$ti-prefix}-border-all:before { content: $ti-icon-border-all; }
|
|
5551
5597
|
.#{$ti-prefix}-border-bottom:before { content: $ti-icon-border-bottom; }
|
|
5598
|
+
.#{$ti-prefix}-border-corner-ios:before { content: $ti-icon-border-corner-ios; }
|
|
5552
5599
|
.#{$ti-prefix}-border-corner-pill:before { content: $ti-icon-border-corner-pill; }
|
|
5553
5600
|
.#{$ti-prefix}-border-corner-rounded:before { content: $ti-icon-border-corner-rounded; }
|
|
5554
5601
|
.#{$ti-prefix}-border-corner-square:before { content: $ti-icon-border-corner-square; }
|
|
@@ -5574,7 +5621,9 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5574
5621
|
.#{$ti-prefix}-bounce-right-filled:before { content: $ti-icon-bounce-right-filled; }
|
|
5575
5622
|
.#{$ti-prefix}-bow:before { content: $ti-icon-bow; }
|
|
5576
5623
|
.#{$ti-prefix}-bowl:before { content: $ti-icon-bowl; }
|
|
5624
|
+
.#{$ti-prefix}-bowl-chopsticks:before { content: $ti-icon-bowl-chopsticks; }
|
|
5577
5625
|
.#{$ti-prefix}-bowl-filled:before { content: $ti-icon-bowl-filled; }
|
|
5626
|
+
.#{$ti-prefix}-bowl-spoon:before { content: $ti-icon-bowl-spoon; }
|
|
5578
5627
|
.#{$ti-prefix}-box:before { content: $ti-icon-box; }
|
|
5579
5628
|
.#{$ti-prefix}-box-align-bottom:before { content: $ti-icon-box-align-bottom; }
|
|
5580
5629
|
.#{$ti-prefix}-box-align-bottom-filled:before { content: $ti-icon-box-align-bottom-filled; }
|
|
@@ -5996,6 +6045,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
5996
6045
|
.#{$ti-prefix}-briefcase-off:before { content: $ti-icon-briefcase-off; }
|
|
5997
6046
|
.#{$ti-prefix}-brightness:before { content: $ti-icon-brightness; }
|
|
5998
6047
|
.#{$ti-prefix}-brightness-2:before { content: $ti-icon-brightness-2; }
|
|
6048
|
+
.#{$ti-prefix}-brightness-auto:before { content: $ti-icon-brightness-auto; }
|
|
5999
6049
|
.#{$ti-prefix}-brightness-down:before { content: $ti-icon-brightness-down; }
|
|
6000
6050
|
.#{$ti-prefix}-brightness-down-filled:before { content: $ti-icon-brightness-down-filled; }
|
|
6001
6051
|
.#{$ti-prefix}-brightness-half:before { content: $ti-icon-brightness-half; }
|
|
@@ -6233,6 +6283,8 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
6233
6283
|
.#{$ti-prefix}-chart-ppf:before { content: $ti-icon-chart-ppf; }
|
|
6234
6284
|
.#{$ti-prefix}-chart-radar:before { content: $ti-icon-chart-radar; }
|
|
6235
6285
|
.#{$ti-prefix}-chart-sankey:before { content: $ti-icon-chart-sankey; }
|
|
6286
|
+
.#{$ti-prefix}-chart-scatter:before { content: $ti-icon-chart-scatter; }
|
|
6287
|
+
.#{$ti-prefix}-chart-scatter-3d:before { content: $ti-icon-chart-scatter-3d; }
|
|
6236
6288
|
.#{$ti-prefix}-chart-treemap:before { content: $ti-icon-chart-treemap; }
|
|
6237
6289
|
.#{$ti-prefix}-check:before { content: $ti-icon-check; }
|
|
6238
6290
|
.#{$ti-prefix}-checkbox:before { content: $ti-icon-checkbox; }
|
|
@@ -6426,6 +6478,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
6426
6478
|
.#{$ti-prefix}-clipboard-list:before { content: $ti-icon-clipboard-list; }
|
|
6427
6479
|
.#{$ti-prefix}-clipboard-off:before { content: $ti-icon-clipboard-off; }
|
|
6428
6480
|
.#{$ti-prefix}-clipboard-plus:before { content: $ti-icon-clipboard-plus; }
|
|
6481
|
+
.#{$ti-prefix}-clipboard-smile:before { content: $ti-icon-clipboard-smile; }
|
|
6429
6482
|
.#{$ti-prefix}-clipboard-text:before { content: $ti-icon-clipboard-text; }
|
|
6430
6483
|
.#{$ti-prefix}-clipboard-typography:before { content: $ti-icon-clipboard-typography; }
|
|
6431
6484
|
.#{$ti-prefix}-clipboard-x:before { content: $ti-icon-clipboard-x; }
|
|
@@ -6743,6 +6796,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
6743
6796
|
.#{$ti-prefix}-database-plus:before { content: $ti-icon-database-plus; }
|
|
6744
6797
|
.#{$ti-prefix}-database-search:before { content: $ti-icon-database-search; }
|
|
6745
6798
|
.#{$ti-prefix}-database-share:before { content: $ti-icon-database-share; }
|
|
6799
|
+
.#{$ti-prefix}-database-smile:before { content: $ti-icon-database-smile; }
|
|
6746
6800
|
.#{$ti-prefix}-database-star:before { content: $ti-icon-database-star; }
|
|
6747
6801
|
.#{$ti-prefix}-database-x:before { content: $ti-icon-database-x; }
|
|
6748
6802
|
.#{$ti-prefix}-decimal:before { content: $ti-icon-decimal; }
|
|
@@ -7450,8 +7504,11 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
7450
7504
|
.#{$ti-prefix}-git-pull-request-draft:before { content: $ti-icon-git-pull-request-draft; }
|
|
7451
7505
|
.#{$ti-prefix}-gizmo:before { content: $ti-icon-gizmo; }
|
|
7452
7506
|
.#{$ti-prefix}-glass:before { content: $ti-icon-glass; }
|
|
7507
|
+
.#{$ti-prefix}-glass-champagne:before { content: $ti-icon-glass-champagne; }
|
|
7508
|
+
.#{$ti-prefix}-glass-cocktail:before { content: $ti-icon-glass-cocktail; }
|
|
7453
7509
|
.#{$ti-prefix}-glass-full:before { content: $ti-icon-glass-full; }
|
|
7454
7510
|
.#{$ti-prefix}-glass-full-filled:before { content: $ti-icon-glass-full-filled; }
|
|
7511
|
+
.#{$ti-prefix}-glass-gin:before { content: $ti-icon-glass-gin; }
|
|
7455
7512
|
.#{$ti-prefix}-glass-off:before { content: $ti-icon-glass-off; }
|
|
7456
7513
|
.#{$ti-prefix}-globe:before { content: $ti-icon-globe; }
|
|
7457
7514
|
.#{$ti-prefix}-globe-filled:before { content: $ti-icon-globe-filled; }
|
|
@@ -7705,6 +7762,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
7705
7762
|
.#{$ti-prefix}-id-badge-2:before { content: $ti-icon-id-badge-2; }
|
|
7706
7763
|
.#{$ti-prefix}-id-badge-off:before { content: $ti-icon-id-badge-off; }
|
|
7707
7764
|
.#{$ti-prefix}-id-off:before { content: $ti-icon-id-off; }
|
|
7765
|
+
.#{$ti-prefix}-image-in-picture:before { content: $ti-icon-image-in-picture; }
|
|
7708
7766
|
.#{$ti-prefix}-inbox:before { content: $ti-icon-inbox; }
|
|
7709
7767
|
.#{$ti-prefix}-inbox-off:before { content: $ti-icon-inbox-off; }
|
|
7710
7768
|
.#{$ti-prefix}-indent-decrease:before { content: $ti-icon-indent-decrease; }
|
|
@@ -8132,6 +8190,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
8132
8190
|
.#{$ti-prefix}-math-integrals:before { content: $ti-icon-math-integrals; }
|
|
8133
8191
|
.#{$ti-prefix}-math-lower:before { content: $ti-icon-math-lower; }
|
|
8134
8192
|
.#{$ti-prefix}-math-max:before { content: $ti-icon-math-max; }
|
|
8193
|
+
.#{$ti-prefix}-math-max-min:before { content: $ti-icon-math-max-min; }
|
|
8135
8194
|
.#{$ti-prefix}-math-min:before { content: $ti-icon-math-min; }
|
|
8136
8195
|
.#{$ti-prefix}-math-not:before { content: $ti-icon-math-not; }
|
|
8137
8196
|
.#{$ti-prefix}-math-off:before { content: $ti-icon-math-off; }
|
|
@@ -8759,6 +8818,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
8759
8818
|
.#{$ti-prefix}-progress-help:before { content: $ti-icon-progress-help; }
|
|
8760
8819
|
.#{$ti-prefix}-progress-x:before { content: $ti-icon-progress-x; }
|
|
8761
8820
|
.#{$ti-prefix}-prompt:before { content: $ti-icon-prompt; }
|
|
8821
|
+
.#{$ti-prefix}-prong:before { content: $ti-icon-prong; }
|
|
8762
8822
|
.#{$ti-prefix}-propeller:before { content: $ti-icon-propeller; }
|
|
8763
8823
|
.#{$ti-prefix}-propeller-off:before { content: $ti-icon-propeller-off; }
|
|
8764
8824
|
.#{$ti-prefix}-protocol:before { content: $ti-icon-protocol; }
|
|
@@ -9068,6 +9128,7 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
9068
9128
|
.#{$ti-prefix}-shopping-bag-discount:before { content: $ti-icon-shopping-bag-discount; }
|
|
9069
9129
|
.#{$ti-prefix}-shopping-bag-edit:before { content: $ti-icon-shopping-bag-edit; }
|
|
9070
9130
|
.#{$ti-prefix}-shopping-bag-exclamation:before { content: $ti-icon-shopping-bag-exclamation; }
|
|
9131
|
+
.#{$ti-prefix}-shopping-bag-heart:before { content: $ti-icon-shopping-bag-heart; }
|
|
9071
9132
|
.#{$ti-prefix}-shopping-bag-minus:before { content: $ti-icon-shopping-bag-minus; }
|
|
9072
9133
|
.#{$ti-prefix}-shopping-bag-plus:before { content: $ti-icon-shopping-bag-plus; }
|
|
9073
9134
|
.#{$ti-prefix}-shopping-bag-search:before { content: $ti-icon-shopping-bag-search; }
|
|
@@ -9153,10 +9214,14 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
9153
9214
|
.#{$ti-prefix}-sort-ascending-2:before { content: $ti-icon-sort-ascending-2; }
|
|
9154
9215
|
.#{$ti-prefix}-sort-ascending-letters:before { content: $ti-icon-sort-ascending-letters; }
|
|
9155
9216
|
.#{$ti-prefix}-sort-ascending-numbers:before { content: $ti-icon-sort-ascending-numbers; }
|
|
9217
|
+
.#{$ti-prefix}-sort-ascending-shapes:before { content: $ti-icon-sort-ascending-shapes; }
|
|
9218
|
+
.#{$ti-prefix}-sort-ascending-small-big:before { content: $ti-icon-sort-ascending-small-big; }
|
|
9219
|
+
.#{$ti-prefix}-sort-deacending-small-big:before { content: $ti-icon-sort-deacending-small-big; }
|
|
9156
9220
|
.#{$ti-prefix}-sort-descending:before { content: $ti-icon-sort-descending; }
|
|
9157
9221
|
.#{$ti-prefix}-sort-descending-2:before { content: $ti-icon-sort-descending-2; }
|
|
9158
9222
|
.#{$ti-prefix}-sort-descending-letters:before { content: $ti-icon-sort-descending-letters; }
|
|
9159
9223
|
.#{$ti-prefix}-sort-descending-numbers:before { content: $ti-icon-sort-descending-numbers; }
|
|
9224
|
+
.#{$ti-prefix}-sort-descending-shapes:before { content: $ti-icon-sort-descending-shapes; }
|
|
9160
9225
|
.#{$ti-prefix}-sort-z-a:before { content: $ti-icon-sort-z-a; }
|
|
9161
9226
|
.#{$ti-prefix}-sos:before { content: $ti-icon-sos; }
|
|
9162
9227
|
.#{$ti-prefix}-soup:before { content: $ti-icon-soup; }
|
|
@@ -9494,6 +9559,8 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
9494
9559
|
.#{$ti-prefix}-temperature-minus:before { content: $ti-icon-temperature-minus; }
|
|
9495
9560
|
.#{$ti-prefix}-temperature-off:before { content: $ti-icon-temperature-off; }
|
|
9496
9561
|
.#{$ti-prefix}-temperature-plus:before { content: $ti-icon-temperature-plus; }
|
|
9562
|
+
.#{$ti-prefix}-temperature-snow:before { content: $ti-icon-temperature-snow; }
|
|
9563
|
+
.#{$ti-prefix}-temperature-sun:before { content: $ti-icon-temperature-sun; }
|
|
9497
9564
|
.#{$ti-prefix}-template:before { content: $ti-icon-template; }
|
|
9498
9565
|
.#{$ti-prefix}-template-off:before { content: $ti-icon-template-off; }
|
|
9499
9566
|
.#{$ti-prefix}-tent:before { content: $ti-icon-tent; }
|
|
@@ -9607,6 +9674,11 @@ $ti-icon-zzz-off: unicode('f440');
|
|
|
9607
9674
|
.#{$ti-prefix}-transfer-vertical:before { content: $ti-icon-transfer-vertical; }
|
|
9608
9675
|
.#{$ti-prefix}-transform:before { content: $ti-icon-transform; }
|
|
9609
9676
|
.#{$ti-prefix}-transform-filled:before { content: $ti-icon-transform-filled; }
|
|
9677
|
+
.#{$ti-prefix}-transform-point:before { content: $ti-icon-transform-point; }
|
|
9678
|
+
.#{$ti-prefix}-transform-point-bottom-left:before { content: $ti-icon-transform-point-bottom-left; }
|
|
9679
|
+
.#{$ti-prefix}-transform-point-bottom-right:before { content: $ti-icon-transform-point-bottom-right; }
|
|
9680
|
+
.#{$ti-prefix}-transform-point-top-left:before { content: $ti-icon-transform-point-top-left; }
|
|
9681
|
+
.#{$ti-prefix}-transform-point-top-right:before { content: $ti-icon-transform-point-top-right; }
|
|
9610
9682
|
.#{$ti-prefix}-transition-bottom:before { content: $ti-icon-transition-bottom; }
|
|
9611
9683
|
.#{$ti-prefix}-transition-left:before { content: $ti-icon-transition-left; }
|
|
9612
9684
|
.#{$ti-prefix}-transition-right:before { content: $ti-icon-transition-right; }
|