@gitsense/gsc-utils 0.2.37 → 0.2.39

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.
@@ -24673,6 +24673,16 @@ let SVGUtils$1 = class SVGUtils {
24673
24673
  return this.create(xml, params);
24674
24674
  }
24675
24675
 
24676
+ /**
24677
+ * Generate history24 SVG icon
24678
+ * @param {Object} params - Configuration parameters
24679
+ * @returns {Element} SVG element
24680
+ */
24681
+ static history24(params) {
24682
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M11.998 2.5A9.503 9.503 0 0 0 3.378 8H5.75a.75.75 0 0 1 0 1.5H2a1 1 0 0 1-1-1V4.75a.75.75 0 0 1 1.5 0v1.697A10.997 10.997 0 0 1 11.998 1C18.074 1 23 5.925 23 12s-4.926 11-11.002 11C6.014 23 1.146 18.223 1 12.275a.75.75 0 0 1 1.5-.037 9.5 9.5 0 0 0 9.498 9.262c5.248 0 9.502-4.253 9.502-9.5s-4.254-9.5-9.502-9.5Z"></path><path d="M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315V7.25Z"></path></svg>`;
24683
+ return this.create(xml, params);
24684
+ }
24685
+
24676
24686
  /**
24677
24687
  * Generate home SVG icon
24678
24688
  * @param {Object} params - Configuration parameters
@@ -25069,6 +25079,16 @@ let SVGUtils$1 = class SVGUtils {
25069
25079
  return this.create(xml, params);
25070
25080
  }
25071
25081
 
25082
+ /**
25083
+ * Generate sparkle24 SVG icon
25084
+ * @param {Object} params - Configuration parameters
25085
+ * @returns {Element} SVG element
25086
+ */
25087
+ static sparkle24(params) {
25088
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M11.191.565c.275-.754 1.342-.753 1.618 0l1.918 5.238a5.83 5.83 0 0 0 3.47 3.47l5.237 1.918c.755.275.755 1.342 0 1.618l-5.237 1.918a5.83 5.83 0 0 0-3.47 3.47l-1.918 5.237c-.276.755-1.343.755-1.618 0l-1.918-5.237a5.83 5.83 0 0 0-3.47-3.47L.565 12.809c-.753-.276-.754-1.342 0-1.618l5.238-1.918a5.83 5.83 0 0 0 3.47-3.47L11.191.565Zm-.505 5.756a7.336 7.336 0 0 1-4.365 4.365L2.73 12l3.591 1.315a7.333 7.333 0 0 1 4.365 4.365L12 21.269l1.315-3.589a7.33 7.33 0 0 1 4.365-4.365L21.269 12l-3.589-1.314a7.333 7.333 0 0 1-4.365-4.365L12 2.73l-1.314 3.591Z"></path></svg>`;
25089
+ return this.create(xml, params);
25090
+ }
25091
+
25072
25092
  /**
25073
25093
  * Generate square SVG icon
25074
25094
  * @param {Object} params - Configuration parameters
@@ -25169,6 +25189,16 @@ let SVGUtils$1 = class SVGUtils {
25169
25189
  return this.create(xml, params);
25170
25190
  }
25171
25191
 
25192
+ /**
25193
+ * Generate telescope24 SVG icon
25194
+ * @param {Object} params - Configuration parameters
25195
+ * @returns {Element} SVG element
25196
+ */
25197
+ static telescope24(params) {
25198
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a1.999 1.999 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm5.263-4.066 1.987 3.44 8.712-4.135-2.857-4.76Zm12.06-1.34.001-.001 3.49-1.656a.498.498 0 0 0 .212-.712l-2.826-4.644a.503.503 0 0 0-.713-.151l-3.148 2.19Zm-13.295 2.2L1.854 13.72a.5.5 0 0 0-.147.66l1.105 1.915a.5.5 0 0 0 .648.201l2.838-1.347ZM17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.278l-2.75 1.25a.75.75 0 0 0-.318.274l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226Z"></path></svg>`;
25199
+ return this.create(xml, params);
25200
+ }
25201
+
25172
25202
  /**
25173
25203
  * Generate terminal SVG icon
25174
25204
  * @param {Object} params - Configuration parameters
@@ -25349,6 +25379,26 @@ let SVGUtils$1 = class SVGUtils {
25349
25379
  return this.create(xml, params);
25350
25380
  }
25351
25381
 
25382
+ /**
25383
+ * Generate shieldCheck SVG icon
25384
+ * @param {Object} params - Configuration parameters
25385
+ * @returns {Element} SVG element
25386
+ */
25387
+ static shieldCheck(params) {
25388
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM11.28 6.28l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l.97.97 2.97-2.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path></svg>`;
25389
+ return this.create(xml, params);
25390
+ }
25391
+
25392
+ /**
25393
+ * Generate shieldCheck24 SVG icon
25394
+ * @param {Object} params - Configuration parameters
25395
+ * @returns {Element} SVG element
25396
+ */
25397
+ static shieldCheck24(params) {
25398
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M16.53 9.78a.75.75 0 0 0-1.06-1.06L11 13.19l-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l5-5Z"></path><path d="m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.748 1.748 0 0 1 1.08 0Zm-.617 1.426-8.25 2.676a.249.249 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.253.253 0 0 0-.154 0Z"></path></svg>`;
25399
+ return this.create(xml, params);
25400
+ }
25401
+
25352
25402
  /**
25353
25403
  * Generate shieldLock SVG icon
25354
25404
  * @param {Object} params - Configuration parameters
@@ -24671,6 +24671,16 @@ let SVGUtils$1 = class SVGUtils {
24671
24671
  return this.create(xml, params);
24672
24672
  }
24673
24673
 
24674
+ /**
24675
+ * Generate history24 SVG icon
24676
+ * @param {Object} params - Configuration parameters
24677
+ * @returns {Element} SVG element
24678
+ */
24679
+ static history24(params) {
24680
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M11.998 2.5A9.503 9.503 0 0 0 3.378 8H5.75a.75.75 0 0 1 0 1.5H2a1 1 0 0 1-1-1V4.75a.75.75 0 0 1 1.5 0v1.697A10.997 10.997 0 0 1 11.998 1C18.074 1 23 5.925 23 12s-4.926 11-11.002 11C6.014 23 1.146 18.223 1 12.275a.75.75 0 0 1 1.5-.037 9.5 9.5 0 0 0 9.498 9.262c5.248 0 9.502-4.253 9.502-9.5s-4.254-9.5-9.502-9.5Z"></path><path d="M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315V7.25Z"></path></svg>`;
24681
+ return this.create(xml, params);
24682
+ }
24683
+
24674
24684
  /**
24675
24685
  * Generate home SVG icon
24676
24686
  * @param {Object} params - Configuration parameters
@@ -25067,6 +25077,16 @@ let SVGUtils$1 = class SVGUtils {
25067
25077
  return this.create(xml, params);
25068
25078
  }
25069
25079
 
25080
+ /**
25081
+ * Generate sparkle24 SVG icon
25082
+ * @param {Object} params - Configuration parameters
25083
+ * @returns {Element} SVG element
25084
+ */
25085
+ static sparkle24(params) {
25086
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M11.191.565c.275-.754 1.342-.753 1.618 0l1.918 5.238a5.83 5.83 0 0 0 3.47 3.47l5.237 1.918c.755.275.755 1.342 0 1.618l-5.237 1.918a5.83 5.83 0 0 0-3.47 3.47l-1.918 5.237c-.276.755-1.343.755-1.618 0l-1.918-5.237a5.83 5.83 0 0 0-3.47-3.47L.565 12.809c-.753-.276-.754-1.342 0-1.618l5.238-1.918a5.83 5.83 0 0 0 3.47-3.47L11.191.565Zm-.505 5.756a7.336 7.336 0 0 1-4.365 4.365L2.73 12l3.591 1.315a7.333 7.333 0 0 1 4.365 4.365L12 21.269l1.315-3.589a7.33 7.33 0 0 1 4.365-4.365L21.269 12l-3.589-1.314a7.333 7.333 0 0 1-4.365-4.365L12 2.73l-1.314 3.591Z"></path></svg>`;
25087
+ return this.create(xml, params);
25088
+ }
25089
+
25070
25090
  /**
25071
25091
  * Generate square SVG icon
25072
25092
  * @param {Object} params - Configuration parameters
@@ -25167,6 +25187,16 @@ let SVGUtils$1 = class SVGUtils {
25167
25187
  return this.create(xml, params);
25168
25188
  }
25169
25189
 
25190
+ /**
25191
+ * Generate telescope24 SVG icon
25192
+ * @param {Object} params - Configuration parameters
25193
+ * @returns {Element} SVG element
25194
+ */
25195
+ static telescope24(params) {
25196
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a1.999 1.999 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm5.263-4.066 1.987 3.44 8.712-4.135-2.857-4.76Zm12.06-1.34.001-.001 3.49-1.656a.498.498 0 0 0 .212-.712l-2.826-4.644a.503.503 0 0 0-.713-.151l-3.148 2.19Zm-13.295 2.2L1.854 13.72a.5.5 0 0 0-.147.66l1.105 1.915a.5.5 0 0 0 .648.201l2.838-1.347ZM17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.278l-2.75 1.25a.75.75 0 0 0-.318.274l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226Z"></path></svg>`;
25197
+ return this.create(xml, params);
25198
+ }
25199
+
25170
25200
  /**
25171
25201
  * Generate terminal SVG icon
25172
25202
  * @param {Object} params - Configuration parameters
@@ -25347,6 +25377,26 @@ let SVGUtils$1 = class SVGUtils {
25347
25377
  return this.create(xml, params);
25348
25378
  }
25349
25379
 
25380
+ /**
25381
+ * Generate shieldCheck SVG icon
25382
+ * @param {Object} params - Configuration parameters
25383
+ * @returns {Element} SVG element
25384
+ */
25385
+ static shieldCheck(params) {
25386
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM11.28 6.28l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l.97.97 2.97-2.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path></svg>`;
25387
+ return this.create(xml, params);
25388
+ }
25389
+
25390
+ /**
25391
+ * Generate shieldCheck24 SVG icon
25392
+ * @param {Object} params - Configuration parameters
25393
+ * @returns {Element} SVG element
25394
+ */
25395
+ static shieldCheck24(params) {
25396
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M16.53 9.78a.75.75 0 0 0-1.06-1.06L11 13.19l-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l5-5Z"></path><path d="m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.748 1.748 0 0 1 1.08 0Zm-.617 1.426-8.25 2.676a.249.249 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.253.253 0 0 0-.154 0Z"></path></svg>`;
25397
+ return this.create(xml, params);
25398
+ }
25399
+
25350
25400
  /**
25351
25401
  * Generate shieldLock SVG icon
25352
25402
  * @param {Object} params - Configuration parameters
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitsense/gsc-utils",
3
- "version": "0.2.37",
3
+ "version": "0.2.39",
4
4
  "description": "Utilities for GitSense Chat (GSC)",
5
5
  "main": "dist/gsc-utils.cjs.js",
6
6
  "module": "dist/gsc-utils.esm.js",
package/src/SVGUtils.js CHANGED
@@ -800,6 +800,16 @@ class SVGUtils {
800
800
  return this.create(xml, params);
801
801
  }
802
802
 
803
+ /**
804
+ * Generate history24 SVG icon
805
+ * @param {Object} params - Configuration parameters
806
+ * @returns {Element} SVG element
807
+ */
808
+ static history24(params) {
809
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M11.998 2.5A9.503 9.503 0 0 0 3.378 8H5.75a.75.75 0 0 1 0 1.5H2a1 1 0 0 1-1-1V4.75a.75.75 0 0 1 1.5 0v1.697A10.997 10.997 0 0 1 11.998 1C18.074 1 23 5.925 23 12s-4.926 11-11.002 11C6.014 23 1.146 18.223 1 12.275a.75.75 0 0 1 1.5-.037 9.5 9.5 0 0 0 9.498 9.262c5.248 0 9.502-4.253 9.502-9.5s-4.254-9.5-9.502-9.5Z"></path><path d="M12.5 7.25a.75.75 0 0 0-1.5 0v5.5c0 .27.144.518.378.651l3.5 2a.75.75 0 0 0 .744-1.302L12.5 12.315V7.25Z"></path></svg>`;
810
+ return this.create(xml, params);
811
+ }
812
+
803
813
  /**
804
814
  * Generate home SVG icon
805
815
  * @param {Object} params - Configuration parameters
@@ -1196,6 +1206,16 @@ class SVGUtils {
1196
1206
  return this.create(xml, params);
1197
1207
  }
1198
1208
 
1209
+ /**
1210
+ * Generate sparkle24 SVG icon
1211
+ * @param {Object} params - Configuration parameters
1212
+ * @returns {Element} SVG element
1213
+ */
1214
+ static sparkle24(params) {
1215
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M11.191.565c.275-.754 1.342-.753 1.618 0l1.918 5.238a5.83 5.83 0 0 0 3.47 3.47l5.237 1.918c.755.275.755 1.342 0 1.618l-5.237 1.918a5.83 5.83 0 0 0-3.47 3.47l-1.918 5.237c-.276.755-1.343.755-1.618 0l-1.918-5.237a5.83 5.83 0 0 0-3.47-3.47L.565 12.809c-.753-.276-.754-1.342 0-1.618l5.238-1.918a5.83 5.83 0 0 0 3.47-3.47L11.191.565Zm-.505 5.756a7.336 7.336 0 0 1-4.365 4.365L2.73 12l3.591 1.315a7.333 7.333 0 0 1 4.365 4.365L12 21.269l1.315-3.589a7.33 7.33 0 0 1 4.365-4.365L21.269 12l-3.589-1.314a7.333 7.333 0 0 1-4.365-4.365L12 2.73l-1.314 3.591Z"></path></svg>`;
1216
+ return this.create(xml, params);
1217
+ }
1218
+
1199
1219
  /**
1200
1220
  * Generate square SVG icon
1201
1221
  * @param {Object} params - Configuration parameters
@@ -1296,6 +1316,16 @@ class SVGUtils {
1296
1316
  return this.create(xml, params);
1297
1317
  }
1298
1318
 
1319
+ /**
1320
+ * Generate telescope24 SVG icon
1321
+ * @param {Object} params - Configuration parameters
1322
+ * @returns {Element} SVG element
1323
+ */
1324
+ static telescope24(params) {
1325
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M.408 15.13a2 2 0 0 1 .59-2.642L17.038 1.33a1.999 1.999 0 0 1 2.85.602l2.828 4.644a2 2 0 0 1-.851 2.847l-17.762 8.43a2 2 0 0 1-2.59-.807Zm5.263-4.066 1.987 3.44 8.712-4.135-2.857-4.76Zm12.06-1.34.001-.001 3.49-1.656a.498.498 0 0 0 .212-.712l-2.826-4.644a.503.503 0 0 0-.713-.151l-3.148 2.19Zm-13.295 2.2L1.854 13.72a.5.5 0 0 0-.147.66l1.105 1.915a.5.5 0 0 0 .648.201l2.838-1.347ZM17.155 22.87a.75.75 0 0 0 .226-1.036l-4-6.239a.75.75 0 0 0-.941-.278l-2.75 1.25a.75.75 0 0 0-.318.274l-3.25 4.989a.75.75 0 0 0 1.256.819l3.131-4.806.51-.232v5.64a.75.75 0 1 0 1.5 0v-6.22l3.6 5.613a.75.75 0 0 0 1.036.226Z"></path></svg>`;
1326
+ return this.create(xml, params);
1327
+ }
1328
+
1299
1329
  /**
1300
1330
  * Generate terminal SVG icon
1301
1331
  * @param {Object} params - Configuration parameters
@@ -1476,6 +1506,26 @@ class SVGUtils {
1476
1506
  return this.create(xml, params);
1477
1507
  }
1478
1508
 
1509
+ /**
1510
+ * Generate shieldCheck SVG icon
1511
+ * @param {Object} params - Configuration parameters
1512
+ * @returns {Element} SVG element
1513
+ */
1514
+ static shieldCheck(params) {
1515
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16"><path d="m8.533.133 5.25 1.68A1.75 1.75 0 0 1 15 3.48V7c0 1.566-.32 3.182-1.303 4.682-.983 1.498-2.585 2.813-5.032 3.855a1.697 1.697 0 0 1-1.33 0c-2.447-1.042-4.049-2.357-5.032-3.855C1.32 10.182 1 8.566 1 7V3.48a1.75 1.75 0 0 1 1.217-1.667l5.25-1.68a1.748 1.748 0 0 1 1.066 0Zm-.61 1.429.001.001-5.25 1.68a.251.251 0 0 0-.174.237V7c0 1.36.275 2.666 1.057 3.859.784 1.194 2.121 2.342 4.366 3.298a.196.196 0 0 0 .154 0c2.245-.957 3.582-2.103 4.366-3.297C13.225 9.666 13.5 8.358 13.5 7V3.48a.25.25 0 0 0-.174-.238l-5.25-1.68a.25.25 0 0 0-.153 0ZM11.28 6.28l-3.5 3.5a.75.75 0 0 1-1.06 0l-1.5-1.5a.749.749 0 0 1 .326-1.275.749.749 0 0 1 .734.215l.97.97 2.97-2.97a.751.751 0 0 1 1.042.018.751.751 0 0 1 .018 1.042Z"></path></svg>`;
1516
+ return this.create(xml, params);
1517
+ }
1518
+
1519
+ /**
1520
+ * Generate shieldCheck24 SVG icon
1521
+ * @param {Object} params - Configuration parameters
1522
+ * @returns {Element} SVG element
1523
+ */
1524
+ static shieldCheck24(params) {
1525
+ const xml = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path d="M16.53 9.78a.75.75 0 0 0-1.06-1.06L11 13.19l-1.97-1.97a.75.75 0 0 0-1.06 1.06l2.5 2.5a.75.75 0 0 0 1.06 0l5-5Z"></path><path d="m12.54.637 8.25 2.675A1.75 1.75 0 0 1 22 4.976V10c0 6.19-3.771 10.704-9.401 12.83a1.704 1.704 0 0 1-1.198 0C5.77 20.705 2 16.19 2 10V4.976c0-.758.489-1.43 1.21-1.664L11.46.637a1.748 1.748 0 0 1 1.08 0Zm-.617 1.426-8.25 2.676a.249.249 0 0 0-.173.237V10c0 5.46 3.28 9.483 8.43 11.426a.199.199 0 0 0 .14 0C17.22 19.483 20.5 15.461 20.5 10V4.976a.25.25 0 0 0-.173-.237l-8.25-2.676a.253.253 0 0 0-.154 0Z"></path></svg>`;
1526
+ return this.create(xml, params);
1527
+ }
1528
+
1479
1529
  /**
1480
1530
  * Generate shieldLock SVG icon
1481
1531
  * @param {Object} params - Configuration parameters