@koobiq/icons 10.1.0 → 10.2.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/CHANGELOG.md +6 -0
- package/fonts/kbq-icons.css +14 -2
- package/fonts/kbq-icons.html +12 -0
- package/fonts/kbq-icons.scss +14 -2
- package/fonts/kbq-icons.ttf +0 -0
- package/fonts/kbq-icons.woff +0 -0
- package/info/kbq-icons-info.json +1 -1
- package/package.json +1 -1
- package/svg/highlighter_16.svg +1 -0
- package/svg/scan_16.svg +1 -0
- package/symbol/sprite.scss +10 -0
- package/symbol/sprite.symbol.html +21 -1
- package/symbol/svg/sprite.symbol.svg +1 -1
package/CHANGELOG.md
CHANGED
package/fonts/kbq-icons.css
CHANGED
|
@@ -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?
|
|
6
|
-
url("./kbq-icons.woff?
|
|
5
|
+
src: url("./kbq-icons.ttf?4c766852ffc11139df2b0e578422f5b7") format("truetype"),
|
|
6
|
+
url("./kbq-icons.woff?4c766852ffc11139df2b0e578422f5b7") format("woff");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.kbq {
|
|
@@ -3938,3 +3938,15 @@ transform:rotate(0.001deg);
|
|
|
3938
3938
|
.kbq-vk-alt_16:before {
|
|
3939
3939
|
content: "\f81e";
|
|
3940
3940
|
}
|
|
3941
|
+
.kbq-scan_16 {
|
|
3942
|
+
font-size: 16px;
|
|
3943
|
+
}
|
|
3944
|
+
.kbq-scan_16:before {
|
|
3945
|
+
content: "\f81f";
|
|
3946
|
+
}
|
|
3947
|
+
.kbq-highlighter_16 {
|
|
3948
|
+
font-size: 16px;
|
|
3949
|
+
}
|
|
3950
|
+
.kbq-highlighter_16:before {
|
|
3951
|
+
content: "\f820";
|
|
3952
|
+
}
|
package/fonts/kbq-icons.html
CHANGED
|
@@ -761,6 +761,12 @@
|
|
|
761
761
|
<span class='label'>scissors_16</span>
|
|
762
762
|
</span>
|
|
763
763
|
</div>
|
|
764
|
+
<div class="icon" data-name="scan_16" title="scan_16">
|
|
765
|
+
<span class="inner">
|
|
766
|
+
<i class="kbq kbq-scan_16" aria-hidden="true"></i>
|
|
767
|
+
<span class='label'>scan_16</span>
|
|
768
|
+
</span>
|
|
769
|
+
</div>
|
|
764
770
|
<div class="icon" data-name="scale_16" title="scale_16">
|
|
765
771
|
<span class="inner">
|
|
766
772
|
<i class="kbq kbq-scale_16" aria-hidden="true"></i>
|
|
@@ -1697,6 +1703,12 @@
|
|
|
1697
1703
|
<span class='label'>hourglass-end_16</span>
|
|
1698
1704
|
</span>
|
|
1699
1705
|
</div>
|
|
1706
|
+
<div class="icon" data-name="highlighter_16" title="highlighter_16">
|
|
1707
|
+
<span class="inner">
|
|
1708
|
+
<i class="kbq kbq-highlighter_16" aria-hidden="true"></i>
|
|
1709
|
+
<span class='label'>highlighter_16</span>
|
|
1710
|
+
</span>
|
|
1711
|
+
</div>
|
|
1700
1712
|
<div class="icon" data-name="hashtag_16" title="hashtag_16">
|
|
1701
1713
|
<span class="inner">
|
|
1702
1714
|
<i class="kbq kbq-hashtag_16" aria-hidden="true"></i>
|
package/fonts/kbq-icons.scss
CHANGED
|
@@ -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?
|
|
6
|
-
url("./kbq-icons.woff?
|
|
5
|
+
src: url("./kbq-icons.ttf?4c766852ffc11139df2b0e578422f5b7") format("truetype"),
|
|
6
|
+
url("./kbq-icons.woff?4c766852ffc11139df2b0e578422f5b7") format("woff");
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.kbq {
|
|
@@ -3938,3 +3938,15 @@ transform:rotate(0.001deg);
|
|
|
3938
3938
|
content: "\f81e";
|
|
3939
3939
|
}
|
|
3940
3940
|
}
|
|
3941
|
+
.kbq-scan_16 {
|
|
3942
|
+
font-size: 16px;
|
|
3943
|
+
&:before {
|
|
3944
|
+
content: "\f81f";
|
|
3945
|
+
}
|
|
3946
|
+
}
|
|
3947
|
+
.kbq-highlighter_16 {
|
|
3948
|
+
font-size: 16px;
|
|
3949
|
+
&:before {
|
|
3950
|
+
content: "\f820";
|
|
3951
|
+
}
|
|
3952
|
+
}
|
package/fonts/kbq-icons.ttf
CHANGED
|
Binary file
|
package/fonts/kbq-icons.woff
CHANGED
|
Binary file
|