@koobiq/icons 9.1.0 → 9.3.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +31 -13
  2. package/README.md +9 -5
  3. package/fonts/kbq-icons.css +98 -2
  4. package/fonts/kbq-icons.html +96 -0
  5. package/fonts/kbq-icons.scss +98 -2
  6. package/fonts/kbq-icons.ttf +0 -0
  7. package/fonts/kbq-icons.woff +0 -0
  8. package/info/kbq-icons-info.json +1 -1
  9. package/package.json +1 -1
  10. package/svg/arrow-down-xs_16.svg +1 -0
  11. package/svg/arrow-rotate-left_24.svg +1 -1
  12. package/svg/arrow-rotate-right_24.svg +1 -0
  13. package/svg/arrow-up-xs_16.svg +1 -0
  14. package/svg/arrows-rotate-bolt_16.svg +1 -1
  15. package/svg/arrows-rotate-slash_16.svg +1 -0
  16. package/svg/arrows-rotate-slash_24.svg +1 -0
  17. package/svg/arrows-rotate_16.svg +1 -0
  18. package/svg/arrows-rotate_24.svg +1 -0
  19. package/svg/astra-linux_16.svg +1 -0
  20. package/svg/chart-gauge-o_24.svg +1 -0
  21. package/svg/check-s_16.svg +1 -1
  22. package/svg/circle-o_24.svg +1 -1
  23. package/svg/code_24.svg +1 -0
  24. package/svg/envelope-badge-arrow-right_16.svg +1 -1
  25. package/svg/envelope-dot_16.svg +1 -1
  26. package/svg/envelope-dot_24.svg +1 -1
  27. package/svg/envelope_16.svg +1 -1
  28. package/svg/envelope_24.svg +1 -1
  29. package/svg/link-dot_16.svg +1 -1
  30. package/svg/lock-256_16.svg +1 -1
  31. package/svg/lock-md5_16.svg +1 -1
  32. package/svg/lock-open_16.svg +1 -1
  33. package/svg/lock-sha1_16.svg +1 -1
  34. package/svg/lock_16.svg +1 -1
  35. package/svg/lock_24.svg +1 -1
  36. package/svg/north-east_16.svg +1 -0
  37. package/svg/opensuse_16.svg +1 -0
  38. package/svg/pencil-on-line_16.svg +1 -0
  39. package/svg/puzzle-piece_16.svg +1 -0
  40. package/svg/thumbs-down_16.svg +1 -0
  41. package/svg/ubuntu_16.svg +1 -0
  42. package/svg/user-arrow-triangle-up_16.svg +1 -1
  43. package/svg/user-badge-file-text_16.svg +1 -1
  44. package/svg/user-badge-gear_16.svg +1 -1
  45. package/svg/user-badge-globe_16.svg +1 -1
  46. package/svg/user-badge-location_16.svg +1 -1
  47. package/svg/user-multiple_16.svg +1 -1
  48. package/svg/user-multiple_24.svg +1 -1
  49. package/svg/user-viewfinder_16.svg +1 -1
  50. package/svg/user_16.svg +1 -1
  51. package/svg/user_24.svg +1 -1
  52. package/symbol/sprite.scss +82 -2
  53. package/symbol/sprite.symbol.html +188 -28
  54. package/symbol/svg/sprite.symbol.svg +1 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,21 @@
1
+ # 9.3.0 "Icons Enhancement" (2025-03-07)
2
+
3
+ ### Icons
4
+
5
+ * feature added auto update fontVersion ([#DS-2164](https://github.com/koobiq/icons/issues/issue/DS-2164)) ([#7](https://github.com/koobiq/icons/issues/7)) 97dce54
6
+ * feature new icons ([#DS-2916](https://github.com/koobiq/icons/issues/issue/DS-2916)) ([#11](https://github.com/koobiq/icons/issues/11)) ec8bceb
7
+ * feature script for check mapping and svg file list ([#12](https://github.com/koobiq/icons/issues/12)) 3c12653
8
+
9
+ # 9.2.0 (2024-10-28)
10
+
11
+ **Added**
12
+
13
+ * north-east_16
14
+
15
+ **Fixed**
16
+
17
+ * circle-o_24.svg
18
+
1
19
  # 9.1.0 (2024-09-25)
2
20
 
3
21
  ### Icons
@@ -5,21 +23,21 @@
5
23
  * feature added new icons 6-23 sept ([#DS-2902](https://github.com/koobiq/icons/issues/issue/DS-2902)) ([#4](https://github.com/koobiq/icons/issues/4)) 7d517b7
6
24
 
7
25
  **New Icons**
8
- arrow-rotate-right_16
9
- chevron-double-down-s_16
10
- chevron-double-left-s_16
11
- chevron-double-right-s_16
12
- chevron-double-up-s_16
13
- chevrons-down-up-s_16
14
- chevrons-up-down-s_16
15
- cloud-badge-key-o_16
16
- cloud-badge-key-o_24
26
+ * arrow-rotate-right_16
27
+ * chevron-double-down-s_16
28
+ * chevron-double-left-s_16
29
+ * chevron-double-right-s_16
30
+ * chevron-double-up-s_16
31
+ * chevrons-down-up-s_16
32
+ * chevrons-up-down-s_16
33
+ * cloud-badge-key-o_16
34
+ * cloud-badge-key-o_24
17
35
 
18
36
  **Fixed Shape Size**
19
- chevron-down-s_16
20
- chevron-left-s_16
21
- chevron-right-s_16
22
- chevron-up-s_16
37
+ * chevron-down-s_16
38
+ * chevron-left-s_16
39
+ * chevron-right-s_16
40
+ * chevron-up-s_16
23
41
 
24
42
  # 9.0.0 (2024-09-13)
25
43
 
package/README.md CHANGED
@@ -9,6 +9,7 @@ npm i @koobiq/icons
9
9
  # Publish new version
10
10
 
11
11
  ## Step 1. Prepare and environment
12
+
12
13
  Install dependencies by running:
13
14
 
14
15
  ```
@@ -27,6 +28,7 @@ yarn install
27
28
  Create a file with name `.env` and add there your Figma access token.
28
29
 
29
30
  To export your icons (SVG) from Figma run the command:
31
+
30
32
  ```
31
33
  yarn run figma:sync
32
34
  ```
@@ -34,20 +36,22 @@ yarn run figma:sync
34
36
  ## Step 4.
35
37
 
36
38
  Change `mapping.json`:
37
- * Add an entry into `mapping.json` with a new codepoint keys.
38
- * Edit the name of an icon in the `mapping.json` in case of icon rename
39
+
40
+ - Add an entry into `mapping.json` with a new codepoint keys.
41
+ - Edit the name of an icon in the `mapping.json` in case of icon rename
39
42
 
40
43
  Commit SVG files `mapping.json` and push all changes to git.
41
44
 
42
45
  ## Step 5.
43
46
 
44
47
  Run stage commit script to create a new release tag.
48
+
45
49
  ```
46
50
  yarn run stage:commit
47
51
  ```
48
52
 
49
53
  Use semver for version naming. So increment major (first) version number if any of these changes were made:
50
54
 
51
- * Any icon name was changed (breaking changes for front-end developers)
52
- * Any icon codepoint was changed (breaking changes for tech writers)
53
- * Significant changes in icon metaphor (breaking changes for all)
55
+ - Any icon name was changed (breaking changes for front-end developers)
56
+ - Any icon codepoint was changed (breaking changes for tech writers)
57
+ - Significant changes in icon metaphor (breaking changes for all)
@@ -2,8 +2,8 @@
2
2
  font-family: "Koobiq Icons";
3
3
  font-weight:normal;
4
4
  font-style:normal;
5
- src: url("./kbq-icons.ttf?1935ca6ea81a7398f810d9b0f732ba5e") format("truetype"),
6
- url("./kbq-icons.woff?1935ca6ea81a7398f810d9b0f732ba5e") format("woff");
5
+ src: url("./kbq-icons.ttf?e7e87a5cac95f63a7ccea04920f48f19") format("truetype"),
6
+ url("./kbq-icons.woff?e7e87a5cac95f63a7ccea04920f48f19") format("woff");
7
7
  }
8
8
 
9
9
  .kbq {
@@ -3734,3 +3734,99 @@ transform:rotate(0.001deg);
3734
3734
  .kbq-chevron-double-up-s_16:before {
3735
3735
  content: "\f7fc";
3736
3736
  }
3737
+ .kbq-north-east_16 {
3738
+ font-size: 16px;
3739
+ }
3740
+ .kbq-north-east_16:before {
3741
+ content: "\f7fd";
3742
+ }
3743
+ .kbq-arrow-down-xs_16 {
3744
+ font-size: 16px;
3745
+ }
3746
+ .kbq-arrow-down-xs_16:before {
3747
+ content: "\f7fe";
3748
+ }
3749
+ .kbq-arrow-rotate-right_24 {
3750
+ font-size: 24px;
3751
+ }
3752
+ .kbq-arrow-rotate-right_24:before {
3753
+ content: "\f7ff";
3754
+ }
3755
+ .kbq-arrow-up-xs_16 {
3756
+ font-size: 16px;
3757
+ }
3758
+ .kbq-arrow-up-xs_16:before {
3759
+ content: "\f800";
3760
+ }
3761
+ .kbq-arrows-rotate_16 {
3762
+ font-size: 16px;
3763
+ }
3764
+ .kbq-arrows-rotate_16:before {
3765
+ content: "\f801";
3766
+ }
3767
+ .kbq-arrows-rotate_24 {
3768
+ font-size: 24px;
3769
+ }
3770
+ .kbq-arrows-rotate_24:before {
3771
+ content: "\f802";
3772
+ }
3773
+ .kbq-arrows-rotate-slash_16 {
3774
+ font-size: 16px;
3775
+ }
3776
+ .kbq-arrows-rotate-slash_16:before {
3777
+ content: "\f803";
3778
+ }
3779
+ .kbq-arrows-rotate-slash_24 {
3780
+ font-size: 24px;
3781
+ }
3782
+ .kbq-arrows-rotate-slash_24:before {
3783
+ content: "\f804";
3784
+ }
3785
+ .kbq-astra-linux_16 {
3786
+ font-size: 16px;
3787
+ }
3788
+ .kbq-astra-linux_16:before {
3789
+ content: "\f805";
3790
+ }
3791
+ .kbq-chart-gauge-o_24 {
3792
+ font-size: 24px;
3793
+ }
3794
+ .kbq-chart-gauge-o_24:before {
3795
+ content: "\f806";
3796
+ }
3797
+ .kbq-code_24 {
3798
+ font-size: 24px;
3799
+ }
3800
+ .kbq-code_24:before {
3801
+ content: "\f807";
3802
+ }
3803
+ .kbq-opensuse_16 {
3804
+ font-size: 16px;
3805
+ }
3806
+ .kbq-opensuse_16:before {
3807
+ content: "\f808";
3808
+ }
3809
+ .kbq-pencil-on-line_16 {
3810
+ font-size: 16px;
3811
+ }
3812
+ .kbq-pencil-on-line_16:before {
3813
+ content: "\f809";
3814
+ }
3815
+ .kbq-puzzle-piece_16 {
3816
+ font-size: 16px;
3817
+ }
3818
+ .kbq-puzzle-piece_16:before {
3819
+ content: "\f80a";
3820
+ }
3821
+ .kbq-thumbs-down_16 {
3822
+ font-size: 16px;
3823
+ }
3824
+ .kbq-thumbs-down_16:before {
3825
+ content: "\f80b";
3826
+ }
3827
+ .kbq-ubuntu_16 {
3828
+ font-size: 16px;
3829
+ }
3830
+ .kbq-ubuntu_16:before {
3831
+ content: "\f80c";
3832
+ }
@@ -293,6 +293,12 @@
293
293
  <span class='label'>undo_16</span>
294
294
  </span>
295
295
  </div>
296
+ <div class="icon" data-name="ubuntu_16" title="ubuntu_16">
297
+ <span class="inner">
298
+ <i class="kbq kbq-ubuntu_16" aria-hidden="true"></i>
299
+ <span class='label'>ubuntu_16</span>
300
+ </span>
301
+ </div>
296
302
  <div class="icon" data-name="triangle-o_16" title="triangle-o_16">
297
303
  <span class="inner">
298
304
  <i class="kbq kbq-triangle-o_16" aria-hidden="true"></i>
@@ -347,6 +353,12 @@
347
353
  <span class='label'>thumbs-up_16</span>
348
354
  </span>
349
355
  </div>
356
+ <div class="icon" data-name="thumbs-down_16" title="thumbs-down_16">
357
+ <span class="inner">
358
+ <i class="kbq kbq-thumbs-down_16" aria-hidden="true"></i>
359
+ <span class='label'>thumbs-down_16</span>
360
+ </span>
361
+ </div>
350
362
  <div class="icon" data-name="text_16" title="text_16">
351
363
  <span class="inner">
352
364
  <i class="kbq kbq-text_16" aria-hidden="true"></i>
@@ -893,6 +905,12 @@
893
905
  <span class='label'>ql_16</span>
894
906
  </span>
895
907
  </div>
908
+ <div class="icon" data-name="puzzle-piece_16" title="puzzle-piece_16">
909
+ <span class="inner">
910
+ <i class="kbq kbq-puzzle-piece_16" aria-hidden="true"></i>
911
+ <span class='label'>puzzle-piece_16</span>
912
+ </span>
913
+ </div>
896
914
  <div class="icon" data-name="pulse_16" title="pulse_16">
897
915
  <span class="inner">
898
916
  <i class="kbq kbq-pulse_16" aria-hidden="true"></i>
@@ -1031,6 +1049,12 @@
1031
1049
  <span class='label'>pencil_16</span>
1032
1050
  </span>
1033
1051
  </div>
1052
+ <div class="icon" data-name="pencil-on-line_16" title="pencil-on-line_16">
1053
+ <span class="inner">
1054
+ <i class="kbq kbq-pencil-on-line_16" aria-hidden="true"></i>
1055
+ <span class='label'>pencil-on-line_16</span>
1056
+ </span>
1057
+ </div>
1034
1058
  <div class="icon" data-name="pause_64" title="pause_64">
1035
1059
  <span class="inner">
1036
1060
  <i class="kbq kbq-pause_64" aria-hidden="true"></i>
@@ -1091,6 +1115,12 @@
1091
1115
  <span class='label'>palette_16</span>
1092
1116
  </span>
1093
1117
  </div>
1118
+ <div class="icon" data-name="opensuse_16" title="opensuse_16">
1119
+ <span class="inner">
1120
+ <i class="kbq kbq-opensuse_16" aria-hidden="true"></i>
1121
+ <span class='label'>opensuse_16</span>
1122
+ </span>
1123
+ </div>
1094
1124
  <div class="icon" data-name="notebook-user_16" title="notebook-user_16">
1095
1125
  <span class="inner">
1096
1126
  <i class="kbq kbq-notebook-user_16" aria-hidden="true"></i>
@@ -1103,6 +1133,12 @@
1103
1133
  <span class='label'>north-star_16</span>
1104
1134
  </span>
1105
1135
  </div>
1136
+ <div class="icon" data-name="north-east_16" title="north-east_16">
1137
+ <span class="inner">
1138
+ <i class="kbq kbq-north-east_16" aria-hidden="true"></i>
1139
+ <span class='label'>north-east_16</span>
1140
+ </span>
1141
+ </div>
1106
1142
  <div class="icon" data-name="node-tree" title="node-tree">
1107
1143
  <span class="inner">
1108
1144
  <i class="kbq kbq-node-tree" aria-hidden="true"></i>
@@ -2315,6 +2351,12 @@
2315
2351
  <span class='label'>compass_16</span>
2316
2352
  </span>
2317
2353
  </div>
2354
+ <div class="icon" data-name="code_24" title="code_24">
2355
+ <span class="inner">
2356
+ <i class="kbq kbq-code_24" aria-hidden="true"></i>
2357
+ <span class='label'>code_24</span>
2358
+ </span>
2359
+ </div>
2318
2360
  <div class="icon" data-name="code_16" title="code_16">
2319
2361
  <span class="inner">
2320
2362
  <i class="kbq kbq-code_16" aria-hidden="true"></i>
@@ -2879,6 +2921,12 @@
2879
2921
  <span class='label'>chart-heatmap_16</span>
2880
2922
  </span>
2881
2923
  </div>
2924
+ <div class="icon" data-name="chart-gauge-o_24" title="chart-gauge-o_24">
2925
+ <span class="inner">
2926
+ <i class="kbq kbq-chart-gauge-o_24" aria-hidden="true"></i>
2927
+ <span class='label'>chart-gauge-o_24</span>
2928
+ </span>
2929
+ </div>
2882
2930
  <div class="icon" data-name="chart-gauge-o_16" title="chart-gauge-o_16">
2883
2931
  <span class="inner">
2884
2932
  <i class="kbq kbq-chart-gauge-o_16" aria-hidden="true"></i>
@@ -3317,6 +3365,12 @@
3317
3365
  <span class='label'>backward-step_16</span>
3318
3366
  </span>
3319
3367
  </div>
3368
+ <div class="icon" data-name="astra-linux_16" title="astra-linux_16">
3369
+ <span class="inner">
3370
+ <i class="kbq kbq-astra-linux_16" aria-hidden="true"></i>
3371
+ <span class='label'>astra-linux_16</span>
3372
+ </span>
3373
+ </div>
3320
3374
  <div class="icon" data-name="asterisk_16" title="asterisk_16">
3321
3375
  <span class="inner">
3322
3376
  <i class="kbq kbq-asterisk_16" aria-hidden="true"></i>
@@ -3341,6 +3395,30 @@
3341
3395
  <span class='label'>arrows-rotate_48</span>
3342
3396
  </span>
3343
3397
  </div>
3398
+ <div class="icon" data-name="arrows-rotate_24" title="arrows-rotate_24">
3399
+ <span class="inner">
3400
+ <i class="kbq kbq-arrows-rotate_24" aria-hidden="true"></i>
3401
+ <span class='label'>arrows-rotate_24</span>
3402
+ </span>
3403
+ </div>
3404
+ <div class="icon" data-name="arrows-rotate_16" title="arrows-rotate_16">
3405
+ <span class="inner">
3406
+ <i class="kbq kbq-arrows-rotate_16" aria-hidden="true"></i>
3407
+ <span class='label'>arrows-rotate_16</span>
3408
+ </span>
3409
+ </div>
3410
+ <div class="icon" data-name="arrows-rotate-slash_24" title="arrows-rotate-slash_24">
3411
+ <span class="inner">
3412
+ <i class="kbq kbq-arrows-rotate-slash_24" aria-hidden="true"></i>
3413
+ <span class='label'>arrows-rotate-slash_24</span>
3414
+ </span>
3415
+ </div>
3416
+ <div class="icon" data-name="arrows-rotate-slash_16" title="arrows-rotate-slash_16">
3417
+ <span class="inner">
3418
+ <i class="kbq kbq-arrows-rotate-slash_16" aria-hidden="true"></i>
3419
+ <span class='label'>arrows-rotate-slash_16</span>
3420
+ </span>
3421
+ </div>
3344
3422
  <div class="icon" data-name="arrows-rotate-reverse_24" title="arrows-rotate-reverse_24">
3345
3423
  <span class="inner">
3346
3424
  <i class="kbq kbq-arrows-rotate-reverse_24" aria-hidden="true"></i>
@@ -3431,6 +3509,12 @@
3431
3509
  <span class='label'>arrow-up_16</span>
3432
3510
  </span>
3433
3511
  </div>
3512
+ <div class="icon" data-name="arrow-up-xs_16" title="arrow-up-xs_16">
3513
+ <span class="inner">
3514
+ <i class="kbq kbq-arrow-up-xs_16" aria-hidden="true"></i>
3515
+ <span class='label'>arrow-up-xs_16</span>
3516
+ </span>
3517
+ </div>
3434
3518
  <div class="icon" data-name="arrow-up-s_16" title="arrow-up-s_16">
3435
3519
  <span class="inner">
3436
3520
  <i class="kbq kbq-arrow-up-s_16" aria-hidden="true"></i>
@@ -3503,6 +3587,12 @@
3503
3587
  <span class='label'>arrow-turn-down-left_16</span>
3504
3588
  </span>
3505
3589
  </div>
3590
+ <div class="icon" data-name="arrow-rotate-right_24" title="arrow-rotate-right_24">
3591
+ <span class="inner">
3592
+ <i class="kbq kbq-arrow-rotate-right_24" aria-hidden="true"></i>
3593
+ <span class='label'>arrow-rotate-right_24</span>
3594
+ </span>
3595
+ </div>
3506
3596
  <div class="icon" data-name="arrow-rotate-right_16" title="arrow-rotate-right_16">
3507
3597
  <span class="inner">
3508
3598
  <i class="kbq kbq-arrow-rotate-right_16" aria-hidden="true"></i>
@@ -3653,6 +3743,12 @@
3653
3743
  <span class='label'>arrow-down_16</span>
3654
3744
  </span>
3655
3745
  </div>
3746
+ <div class="icon" data-name="arrow-down-xs_16" title="arrow-down-xs_16">
3747
+ <span class="inner">
3748
+ <i class="kbq kbq-arrow-down-xs_16" aria-hidden="true"></i>
3749
+ <span class='label'>arrow-down-xs_16</span>
3750
+ </span>
3751
+ </div>
3656
3752
  <div class="icon" data-name="arrow-down-to-line_16" title="arrow-down-to-line_16">
3657
3753
  <span class="inner">
3658
3754
  <i class="kbq kbq-arrow-down-to-line_16" aria-hidden="true"></i>
@@ -2,8 +2,8 @@
2
2
  font-family: "Koobiq Icons";
3
3
  font-weight:normal;
4
4
  font-style:normal;
5
- src: url("./kbq-icons.ttf?1935ca6ea81a7398f810d9b0f732ba5e") format("truetype"),
6
- url("./kbq-icons.woff?1935ca6ea81a7398f810d9b0f732ba5e") format("woff");
5
+ src: url("./kbq-icons.ttf?e7e87a5cac95f63a7ccea04920f48f19") format("truetype"),
6
+ url("./kbq-icons.woff?e7e87a5cac95f63a7ccea04920f48f19") format("woff");
7
7
  }
8
8
 
9
9
  .kbq {
@@ -3734,3 +3734,99 @@ transform:rotate(0.001deg);
3734
3734
  content: "\f7fc";
3735
3735
  }
3736
3736
  }
3737
+ .kbq-north-east_16 {
3738
+ font-size: 16px;
3739
+ &:before {
3740
+ content: "\f7fd";
3741
+ }
3742
+ }
3743
+ .kbq-arrow-down-xs_16 {
3744
+ font-size: 16px;
3745
+ &:before {
3746
+ content: "\f7fe";
3747
+ }
3748
+ }
3749
+ .kbq-arrow-rotate-right_24 {
3750
+ font-size: 24px;
3751
+ &:before {
3752
+ content: "\f7ff";
3753
+ }
3754
+ }
3755
+ .kbq-arrow-up-xs_16 {
3756
+ font-size: 16px;
3757
+ &:before {
3758
+ content: "\f800";
3759
+ }
3760
+ }
3761
+ .kbq-arrows-rotate_16 {
3762
+ font-size: 16px;
3763
+ &:before {
3764
+ content: "\f801";
3765
+ }
3766
+ }
3767
+ .kbq-arrows-rotate_24 {
3768
+ font-size: 24px;
3769
+ &:before {
3770
+ content: "\f802";
3771
+ }
3772
+ }
3773
+ .kbq-arrows-rotate-slash_16 {
3774
+ font-size: 16px;
3775
+ &:before {
3776
+ content: "\f803";
3777
+ }
3778
+ }
3779
+ .kbq-arrows-rotate-slash_24 {
3780
+ font-size: 24px;
3781
+ &:before {
3782
+ content: "\f804";
3783
+ }
3784
+ }
3785
+ .kbq-astra-linux_16 {
3786
+ font-size: 16px;
3787
+ &:before {
3788
+ content: "\f805";
3789
+ }
3790
+ }
3791
+ .kbq-chart-gauge-o_24 {
3792
+ font-size: 24px;
3793
+ &:before {
3794
+ content: "\f806";
3795
+ }
3796
+ }
3797
+ .kbq-code_24 {
3798
+ font-size: 24px;
3799
+ &:before {
3800
+ content: "\f807";
3801
+ }
3802
+ }
3803
+ .kbq-opensuse_16 {
3804
+ font-size: 16px;
3805
+ &:before {
3806
+ content: "\f808";
3807
+ }
3808
+ }
3809
+ .kbq-pencil-on-line_16 {
3810
+ font-size: 16px;
3811
+ &:before {
3812
+ content: "\f809";
3813
+ }
3814
+ }
3815
+ .kbq-puzzle-piece_16 {
3816
+ font-size: 16px;
3817
+ &:before {
3818
+ content: "\f80a";
3819
+ }
3820
+ }
3821
+ .kbq-thumbs-down_16 {
3822
+ font-size: 16px;
3823
+ &:before {
3824
+ content: "\f80b";
3825
+ }
3826
+ }
3827
+ .kbq-ubuntu_16 {
3828
+ font-size: 16px;
3829
+ &:before {
3830
+ content: "\f80c";
3831
+ }
3832
+ }
Binary file
Binary file