@cuby-ui/icons 0.0.209 → 0.0.211
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.
|
@@ -1022,6 +1022,16 @@ const cuiIconBulletFillSm = `
|
|
|
1022
1022
|
<circle cx="10.0488" cy="10.5" r="4" fill="#0099FF"/>
|
|
1023
1023
|
</svg>
|
|
1024
1024
|
`;
|
|
1025
|
+
const cuiIconArrowRight = `
|
|
1026
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
|
|
1027
|
+
<path d="M3.33301 7.9987H12.6663M12.6663 7.9987L7.99967 3.33203M12.6663 7.9987L7.99967 12.6654" stroke="#595E6A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
1028
|
+
</svg>
|
|
1029
|
+
`;
|
|
1030
|
+
const cuiIconArrowRightSm = `
|
|
1031
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none">
|
|
1032
|
+
<path d="M4.16699 10.0013H15.8337M15.8337 10.0013L10.0003 4.16797M15.8337 10.0013L10.0003 15.8346" stroke="#595E6A" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
|
1033
|
+
</svg>
|
|
1034
|
+
`;
|
|
1025
1035
|
const CUI_ICONS = {
|
|
1026
1036
|
cuiIconLoading,
|
|
1027
1037
|
cuiIconCheck,
|
|
@@ -1160,7 +1170,9 @@ const CUI_ICONS = {
|
|
|
1160
1170
|
cuiIconBarChart,
|
|
1161
1171
|
cuiIconCurvedArrow,
|
|
1162
1172
|
cuiIconBulletFillSm,
|
|
1163
|
-
cuiIconBulletSm
|
|
1173
|
+
cuiIconBulletSm,
|
|
1174
|
+
cuiIconArrowRight,
|
|
1175
|
+
cuiIconArrowRightSm
|
|
1164
1176
|
};
|
|
1165
1177
|
|
|
1166
1178
|
function cuiIsIcon(value) {
|