@nice2dev/icons-tech 1.0.11 → 1.0.14

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/dist/index.mjs CHANGED
@@ -172,7 +172,7 @@ const iconDefaults = {
172
172
  animationDuration: "normal"
173
173
  };
174
174
  const TerminalIcon = createTechIcon(
175
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
175
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
176
176
  /* @__PURE__ */ jsx(
177
177
  "rect",
178
178
  {
@@ -210,7 +210,7 @@ const TerminalIcon = createTechIcon(
210
210
  { displayName: "TerminalIcon" }
211
211
  );
212
212
  const CodeIcon = createTechIcon(
213
- ({ color, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
213
+ ({ color, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
214
214
  /* @__PURE__ */ jsx(
215
215
  "path",
216
216
  {
@@ -350,7 +350,7 @@ const GitMergeIcon = createTechIcon(
350
350
  { displayName: "GitMergeIcon" }
351
351
  );
352
352
  const BugIcon$1 = createTechIcon(
353
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
353
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
354
354
  /* @__PURE__ */ jsx("path", { d: "M8 8V5a4 4 0 118 0v3", fill: "none", stroke: color, strokeWidth: "2" }),
355
355
  /* @__PURE__ */ jsx(
356
356
  "ellipse",
@@ -478,7 +478,7 @@ const APIIcon$1 = createTechIcon(
478
478
  { displayName: "APIIcon" }
479
479
  );
480
480
  const JSONIcon = createTechIcon(
481
- ({ color, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
481
+ ({ color, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
482
482
  /* @__PURE__ */ jsx(
483
483
  "path",
484
484
  {
@@ -596,7 +596,7 @@ const PackageIcon = createTechIcon(
596
596
  { displayName: "PackageIcon" }
597
597
  );
598
598
  const BuildIcon$1 = createTechIcon(
599
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
599
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
600
600
  "path",
601
601
  {
602
602
  d: "M14.7 6.3a1 1 0 000 1.4l1.6 1.6a1 1 0 001.4 0l3.77-3.77a6 6 0 01-7.94 7.94l-6.91 6.91a2.12 2.12 0 01-3-3l6.91-6.91a6 6 0 017.94-7.94l-3.76 3.76z",
@@ -861,7 +861,7 @@ const LambdaIcon = createTechIcon(
861
861
  { displayName: "LambdaIcon" }
862
862
  );
863
863
  const S3BucketIcon = createTechIcon(
864
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
864
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
865
865
  /* @__PURE__ */ jsx(
866
866
  "path",
867
867
  {
@@ -2088,7 +2088,7 @@ const PromiseIcon = createTechIcon(
2088
2088
  { displayName: "PromiseIcon" }
2089
2089
  );
2090
2090
  const StreamIcon = createTechIcon(
2091
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2091
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2092
2092
  /* @__PURE__ */ jsx(
2093
2093
  "path",
2094
2094
  {
@@ -2311,7 +2311,7 @@ const KeyIcon = createTechIcon(
2311
2311
  { displayName: "KeyIcon" }
2312
2312
  );
2313
2313
  const FingerprintIcon = createTechIcon(
2314
- ({ color, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2314
+ ({ color, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2315
2315
  /* @__PURE__ */ jsx("path", { d: "M2 12a10 10 0 0110-10", stroke: color, strokeWidth: "2", fill: "none" }),
2316
2316
  /* @__PURE__ */ jsx("path", { d: "M4 16a8 8 0 018-8", stroke: color, strokeWidth: "2", fill: "none" }),
2317
2317
  /* @__PURE__ */ jsx("path", { d: "M6 20a6 6 0 016-6", stroke: color, strokeWidth: "2", fill: "none" }),
@@ -2377,7 +2377,7 @@ const OAuthIcon = createTechIcon(
2377
2377
  { displayName: "OAuthIcon" }
2378
2378
  );
2379
2379
  const JWTIcon = createTechIcon(
2380
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2380
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2381
2381
  /* @__PURE__ */ jsx("rect", { x: "3", y: "6", width: "18", height: "4", fill: color, opacity: "0.6" }),
2382
2382
  /* @__PURE__ */ jsx("rect", { x: "3", y: "10", width: "18", height: "4", fill: accentColor || color, opacity: "0.4" }),
2383
2383
  /* @__PURE__ */ jsx("rect", { x: "3", y: "14", width: "18", height: "4", fill: color, opacity: "0.6" }),
@@ -2466,7 +2466,7 @@ const CertificateIcon = createTechIcon(
2466
2466
  { displayName: "CertificateIcon" }
2467
2467
  );
2468
2468
  const HashIcon = createTechIcon(
2469
- ({ color, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
2469
+ ({ color, variant: _variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
2470
2470
  "path",
2471
2471
  {
2472
2472
  d: "M4 9h16M4 15h16M10 3v18M14 3v18",
@@ -2497,7 +2497,7 @@ const PrivateKeyIcon = createTechIcon(
2497
2497
  { displayName: "PrivateKeyIcon" }
2498
2498
  );
2499
2499
  const PublicKeyIcon = createTechIcon(
2500
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2500
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2501
2501
  /* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "4", fill: "none", stroke: color, strokeWidth: "2" }),
2502
2502
  /* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "1.5", fill: color }),
2503
2503
  /* @__PURE__ */ jsx("path", { d: "M11 11l9 9", stroke: color, strokeWidth: "2" }),
@@ -2535,7 +2535,7 @@ const MalwareIcon = createTechIcon(
2535
2535
  { displayName: "MalwareIcon" }
2536
2536
  );
2537
2537
  const VirusIcon = createTechIcon(
2538
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2538
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2539
2539
  /* @__PURE__ */ jsx(
2540
2540
  "circle",
2541
2541
  {
@@ -2560,7 +2560,7 @@ const VirusIcon = createTechIcon(
2560
2560
  { displayName: "VirusIcon" }
2561
2561
  );
2562
2562
  const PhishingIcon = createTechIcon(
2563
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2563
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2564
2564
  /* @__PURE__ */ jsx("path", { d: "M12 2v10", stroke: color, strokeWidth: "2" }),
2565
2565
  /* @__PURE__ */ jsx(
2566
2566
  "path",
@@ -2615,7 +2615,7 @@ const DDoSIcon = createTechIcon(
2615
2615
  { displayName: "DDoSIcon" }
2616
2616
  );
2617
2617
  const FirewallSecIcon = createTechIcon(
2618
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2618
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2619
2619
  /* @__PURE__ */ jsx(
2620
2620
  "rect",
2621
2621
  {
@@ -2718,7 +2718,7 @@ const FirewallSecIcon = createTechIcon(
2718
2718
  { displayName: "FirewallSecIcon" }
2719
2719
  );
2720
2720
  const IntrusionDetectionIcon = createTechIcon(
2721
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2721
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2722
2722
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9", fill: "none", stroke: color, strokeWidth: "2" }),
2723
2723
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "5", fill: "none", stroke: color, strokeWidth: "1.5" }),
2724
2724
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "1", fill: accentColor || "#a00" }),
@@ -2728,7 +2728,7 @@ const IntrusionDetectionIcon = createTechIcon(
2728
2728
  { displayName: "IntrusionDetectionIcon" }
2729
2729
  );
2730
2730
  const RBACIcon = createTechIcon(
2731
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2731
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2732
2732
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "6", r: "2", fill: color }),
2733
2733
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "6", r: "2", fill: color }),
2734
2734
  /* @__PURE__ */ jsx("circle", { cx: "18", cy: "6", r: "2", fill: color }),
@@ -2921,7 +2921,7 @@ const VPNIcon = createTechIcon(
2921
2921
  { displayName: "VPNIcon" }
2922
2922
  );
2923
2923
  const ZeroTrustIcon = createTechIcon(
2924
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2924
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2925
2925
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9", fill: "none", stroke: color, strokeWidth: "2" }),
2926
2926
  /* @__PURE__ */ jsx("text", { x: "6", y: "16", fontSize: "10", fontWeight: "bold", fill: color, children: "0" }),
2927
2927
  /* @__PURE__ */ jsx("path", { d: "M14 8l4 4-4 4", stroke: accentColor || color, strokeWidth: "2", fill: "none" }),
@@ -2981,7 +2981,7 @@ const _SecurityIcons = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defi
2981
2981
  ZeroTrustIcon
2982
2982
  }, Symbol.toStringTag, { value: "Module" }));
2983
2983
  const NeuralNetworkIcon = createTechIcon(
2984
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2984
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
2985
2985
  /* @__PURE__ */ jsx("circle", { cx: "4", cy: "6", r: "2", fill: color }),
2986
2986
  /* @__PURE__ */ jsx("circle", { cx: "4", cy: "12", r: "2", fill: color }),
2987
2987
  /* @__PURE__ */ jsx("circle", { cx: "4", cy: "18", r: "2", fill: color }),
@@ -3004,7 +3004,7 @@ const NeuralNetworkIcon = createTechIcon(
3004
3004
  { displayName: "NeuralNetworkIcon" }
3005
3005
  );
3006
3006
  const DeepLearningIcon = createTechIcon(
3007
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3007
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3008
3008
  /* @__PURE__ */ jsx("rect", { x: "2", y: "4", width: "4", height: "16", rx: "1", fill: color, opacity: "0.4" }),
3009
3009
  /* @__PURE__ */ jsx("rect", { x: "7", y: "4", width: "4", height: "16", rx: "1", fill: color, opacity: "0.5" }),
3010
3010
  /* @__PURE__ */ jsx("rect", { x: "12", y: "4", width: "4", height: "16", rx: "1", fill: accentColor || color, opacity: "0.6" }),
@@ -3080,7 +3080,7 @@ const TransformerIcon = createTechIcon(
3080
3080
  { displayName: "TransformerIcon" }
3081
3081
  );
3082
3082
  const CNNIcon = createTechIcon(
3083
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3083
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3084
3084
  /* @__PURE__ */ jsx("rect", { x: "2", y: "6", width: "8", height: "8", fill: "none", stroke: color, strokeWidth: "2" }),
3085
3085
  /* @__PURE__ */ jsx("rect", { x: "4", y: "8", width: "3", height: "3", fill: accentColor || color, opacity: "0.6" }),
3086
3086
  /* @__PURE__ */ jsx("rect", { x: "12", y: "4", width: "4", height: "4", fill: color, opacity: "0.4" }),
@@ -3182,7 +3182,7 @@ const DecisionTreeIcon = createTechIcon(
3182
3182
  { displayName: "DecisionTreeIcon" }
3183
3183
  );
3184
3184
  const RandomForestIcon = createTechIcon(
3185
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3185
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3186
3186
  /* @__PURE__ */ jsx("path", { d: "M6 12L6 8L4 10L6 6L8 10L6 8", stroke: color, strokeWidth: "1.5", fill: "none" }),
3187
3187
  /* @__PURE__ */ jsx("rect", { x: "5", y: "12", width: "2", height: "4", fill: color }),
3188
3188
  /* @__PURE__ */ jsx(
@@ -3202,7 +3202,7 @@ const RandomForestIcon = createTechIcon(
3202
3202
  { displayName: "RandomForestIcon" }
3203
3203
  );
3204
3204
  const ClusteringIcon = createTechIcon(
3205
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3205
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3206
3206
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "8", r: "1.5", fill: color }),
3207
3207
  /* @__PURE__ */ jsx("circle", { cx: "8", cy: "6", r: "1.5", fill: color }),
3208
3208
  /* @__PURE__ */ jsx("circle", { cx: "5", cy: "5", r: "1.5", fill: color }),
@@ -3218,7 +3218,7 @@ const ClusteringIcon = createTechIcon(
3218
3218
  { displayName: "ClusteringIcon" }
3219
3219
  );
3220
3220
  const RegressionIcon = createTechIcon(
3221
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3221
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3222
3222
  /* @__PURE__ */ jsx("path", { d: "M4 20V4M4 20h16", stroke: color, strokeWidth: "2" }),
3223
3223
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "16", r: "1.5", fill: color }),
3224
3224
  /* @__PURE__ */ jsx("circle", { cx: "9", cy: "14", r: "1.5", fill: color }),
@@ -3230,7 +3230,7 @@ const RegressionIcon = createTechIcon(
3230
3230
  { displayName: "RegressionIcon" }
3231
3231
  );
3232
3232
  const ClassificationIcon = createTechIcon(
3233
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3233
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3234
3234
  /* @__PURE__ */ jsx(
3235
3235
  "path",
3236
3236
  {
@@ -3251,7 +3251,7 @@ const ClassificationIcon = createTechIcon(
3251
3251
  { displayName: "ClassificationIcon" }
3252
3252
  );
3253
3253
  const KMeansIcon = createTechIcon(
3254
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3254
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3255
3255
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "8", r: "2", fill: "none", stroke: color, strokeWidth: "2" }),
3256
3256
  /* @__PURE__ */ jsx("circle", { cx: "18", cy: "8", r: "2", fill: "none", stroke: accentColor || color, strokeWidth: "2" }),
3257
3257
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "18", r: "2", fill: "none", stroke: color, strokeWidth: "2" }),
@@ -3265,7 +3265,7 @@ const KMeansIcon = createTechIcon(
3265
3265
  { displayName: "KMeansIcon" }
3266
3266
  );
3267
3267
  const SVMIcon = createTechIcon(
3268
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3268
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3269
3269
  /* @__PURE__ */ jsx("path", { d: "M20 4L4 20", stroke: accentColor || color, strokeWidth: "2" }),
3270
3270
  /* @__PURE__ */ jsx(
3271
3271
  "path",
@@ -3529,7 +3529,7 @@ const DatasetIcon = createTechIcon(
3529
3529
  { displayName: "DatasetIcon" }
3530
3530
  );
3531
3531
  const FeatureEngineeringIcon = createTechIcon(
3532
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3532
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3533
3533
  /* @__PURE__ */ jsx("rect", { x: "2", y: "8", width: "6", height: "8", fill: color, opacity: "0.4" }),
3534
3534
  /* @__PURE__ */ jsx("path", { d: "M8 12h3l2-4l2 8l2-4h3", stroke: accentColor || color, strokeWidth: "2", fill: "none" }),
3535
3535
  /* @__PURE__ */ jsx("rect", { x: "16", y: "8", width: "6", height: "8", fill: accentColor || color, opacity: "0.6" })
@@ -3537,7 +3537,7 @@ const FeatureEngineeringIcon = createTechIcon(
3537
3537
  { displayName: "FeatureEngineeringIcon" }
3538
3538
  );
3539
3539
  const HyperparameterIcon = createTechIcon(
3540
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3540
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3541
3541
  /* @__PURE__ */ jsx("path", { d: "M4 6h16", stroke: color, strokeWidth: "2" }),
3542
3542
  /* @__PURE__ */ jsx("circle", { cx: "8", cy: "6", r: "2", fill: accentColor || color }),
3543
3543
  /* @__PURE__ */ jsx("path", { d: "M4 12h16", stroke: color, strokeWidth: "2" }),
@@ -3548,7 +3548,7 @@ const HyperparameterIcon = createTechIcon(
3548
3548
  { displayName: "HyperparameterIcon" }
3549
3549
  );
3550
3550
  const CrossValidationIcon = createTechIcon(
3551
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3551
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3552
3552
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "16", height: "3", fill: accentColor || color }),
3553
3553
  /* @__PURE__ */ jsx("rect", { x: "4", y: "8", width: "16", height: "3", fill: color, opacity: "0.7" }),
3554
3554
  /* @__PURE__ */ jsx("rect", { x: "4", y: "12", width: "16", height: "3", fill: color, opacity: "0.5" }),
@@ -3558,7 +3558,7 @@ const CrossValidationIcon = createTechIcon(
3558
3558
  { displayName: "CrossValidationIcon" }
3559
3559
  );
3560
3560
  const EmbeddingIcon = createTechIcon(
3561
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3561
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3562
3562
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "6", r: "1.5", fill: color }),
3563
3563
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "12", r: "1.5", fill: color }),
3564
3564
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "18", r: "1.5", fill: color }),
@@ -3649,7 +3649,7 @@ const _AIMLIcons = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePr
3649
3649
  TransformerIcon
3650
3650
  }, Symbol.toStringTag, { value: "Module" }));
3651
3651
  const ReactIcon = createTechIcon(
3652
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3652
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3653
3653
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "2.5", fill: accentColor || color }),
3654
3654
  /* @__PURE__ */ jsx("ellipse", { cx: "12", cy: "12", rx: "9", ry: "4", fill: "none", stroke: color, strokeWidth: "1.5" }),
3655
3655
  /* @__PURE__ */ jsx(
@@ -3721,7 +3721,7 @@ const VueIcon = createTechIcon(
3721
3721
  { displayName: "VueIcon" }
3722
3722
  );
3723
3723
  const SvelteIcon = createTechIcon(
3724
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3724
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3725
3725
  /* @__PURE__ */ jsx(
3726
3726
  "path",
3727
3727
  {
@@ -3820,7 +3820,7 @@ const GatsbyIcon = createTechIcon(
3820
3820
  { displayName: "GatsbyIcon" }
3821
3821
  );
3822
3822
  const SolidJSIcon = createTechIcon(
3823
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3823
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
3824
3824
  /* @__PURE__ */ jsx("path", { d: "M6 8c0-2 2-4 6-4 3 0 5 1 6 3l-6 3-6-2z", fill: accentColor || color, opacity: "0.7" }),
3825
3825
  /* @__PURE__ */ jsx("path", { d: "M6 16c0 2 2 4 6 4 3 0 5-1 6-3l-6-3-6 2z", fill: color, opacity: "0.9" }),
3826
3826
  /* @__PURE__ */ jsx("path", { d: "M18 8l-6 4 6 4", fill: "none", stroke: color, strokeWidth: "1.5" })
@@ -4061,7 +4061,7 @@ const DotNetIcon = createTechIcon(
4061
4061
  { displayName: "DotNetIcon" }
4062
4062
  );
4063
4063
  const LaravelIcon = createTechIcon(
4064
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4064
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4065
4065
  /* @__PURE__ */ jsx(
4066
4066
  "path",
4067
4067
  {
@@ -4130,7 +4130,7 @@ const GoIcon = createTechIcon(
4130
4130
  { displayName: "GoIcon" }
4131
4131
  );
4132
4132
  const TailwindIcon = createTechIcon(
4133
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4133
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4134
4134
  /* @__PURE__ */ jsx(
4135
4135
  "path",
4136
4136
  {
@@ -4550,7 +4550,7 @@ const StateIcon = createTechIcon(
4550
4550
  { displayName: "StateIcon" }
4551
4551
  );
4552
4552
  const CSSGridIcon = createTechIcon(
4553
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4553
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4554
4554
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "16", height: "16", fill: "none", stroke: color, strokeWidth: "2" }),
4555
4555
  /* @__PURE__ */ jsx("path", { d: "M4 10h16M4 16h16M10 4v16M16 4v16", stroke: color, strokeWidth: "1" }),
4556
4556
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "6", height: "6", fill: accentColor || color, opacity: "0.4" }),
@@ -4559,7 +4559,7 @@ const CSSGridIcon = createTechIcon(
4559
4559
  { displayName: "CSSGridIcon" }
4560
4560
  );
4561
4561
  const FlexboxIcon = createTechIcon(
4562
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4562
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4563
4563
  /* @__PURE__ */ jsx("rect", { x: "4", y: "6", width: "16", height: "12", fill: "none", stroke: color, strokeWidth: "2" }),
4564
4564
  /* @__PURE__ */ jsx("rect", { x: "6", y: "8", width: "3", height: "8", fill: accentColor || color, opacity: "0.6" }),
4565
4565
  /* @__PURE__ */ jsx("rect", { x: "10", y: "10", width: "3", height: "4", fill: accentColor || color, opacity: "0.6" }),
@@ -4828,7 +4828,7 @@ const CookieIcon = createTechIcon(
4828
4828
  { displayName: "CookieIcon" }
4829
4829
  );
4830
4830
  const PerformanceIcon = createTechIcon(
4831
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4831
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4832
4832
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9", fill: "none", stroke: color, strokeWidth: "2" }),
4833
4833
  /* @__PURE__ */ jsx(
4834
4834
  "path",
@@ -4921,7 +4921,7 @@ const CacheIcon$1 = createTechIcon(
4921
4921
  { displayName: "CacheIcon" }
4922
4922
  );
4923
4923
  const CDNIcon$1 = createTechIcon(
4924
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4924
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4925
4925
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8", fill: "none", stroke: color, strokeWidth: "2" }),
4926
4926
  /* @__PURE__ */ jsx(
4927
4927
  "ellipse",
@@ -4944,7 +4944,7 @@ const CDNIcon$1 = createTechIcon(
4944
4944
  { displayName: "CDNIcon" }
4945
4945
  );
4946
4946
  const SEOIcon = createTechIcon(
4947
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4947
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
4948
4948
  /* @__PURE__ */ jsx("circle", { cx: "10", cy: "10", r: "6", fill: "none", stroke: color, strokeWidth: "2" }),
4949
4949
  /* @__PURE__ */ jsx("path", { d: "M14 14l6 6", stroke: color, strokeWidth: "2", strokeLinecap: "round" }),
4950
4950
  /* @__PURE__ */ jsx("path", { d: "M6 12l3-4 2 2 3-4", fill: "none", stroke: accentColor || color, strokeWidth: "1.5" })
@@ -5007,7 +5007,7 @@ const BundleIcon = createTechIcon(
5007
5007
  { displayName: "BundleIcon" }
5008
5008
  );
5009
5009
  const MinifyIcon = createTechIcon(
5010
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5010
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5011
5011
  /* @__PURE__ */ jsx("rect", { x: "2", y: "6", width: "8", height: "12", fill: color, opacity: "0.3" }),
5012
5012
  /* @__PURE__ */ jsx("path", { d: "M10 12h4", stroke: color, strokeWidth: "1.5" }),
5013
5013
  /* @__PURE__ */ jsx("path", { d: "M12 10l2 2-2 2", fill: "none", stroke: color, strokeWidth: "1.5" }),
@@ -5232,7 +5232,7 @@ const KotlinIcon = createTechIcon(
5232
5232
  { displayName: "KotlinIcon" }
5233
5233
  );
5234
5234
  const FlutterIcon = createTechIcon(
5235
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5235
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5236
5236
  /* @__PURE__ */ jsx("path", { d: "M14 2L4 12l4 4 10-10z", fill: color, opacity: "0.9" }),
5237
5237
  /* @__PURE__ */ jsx("path", { d: "M14 12L4 22l4-4 10 0z", fill: accentColor || color, opacity: "0.8" }),
5238
5238
  /* @__PURE__ */ jsx("path", { d: "M8 16l6-4-6 10z", fill: color, opacity: "0.6" })
@@ -5240,7 +5240,7 @@ const FlutterIcon = createTechIcon(
5240
5240
  { displayName: "FlutterIcon" }
5241
5241
  );
5242
5242
  const ReactNativeIcon = createTechIcon(
5243
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5243
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5244
5244
  /* @__PURE__ */ jsx(
5245
5245
  "rect",
5246
5246
  {
@@ -5586,7 +5586,7 @@ const GesturesIcon = createTechIcon(
5586
5586
  { displayName: "GesturesIcon" }
5587
5587
  );
5588
5588
  const TouchIDIcon = createTechIcon(
5589
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5589
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5590
5590
  /* @__PURE__ */ jsx("path", { d: "M12 6c-3 0-6 2-6 6s3 6 6 6", fill: "none", stroke: color, strokeWidth: "1.5" }),
5591
5591
  /* @__PURE__ */ jsx("path", { d: "M12 8c-2 0-4 1.5-4 4s2 4 4 4", fill: "none", stroke: color, strokeWidth: "1.5" }),
5592
5592
  /* @__PURE__ */ jsx(
@@ -5604,7 +5604,7 @@ const TouchIDIcon = createTechIcon(
5604
5604
  { displayName: "TouchIDIcon" }
5605
5605
  );
5606
5606
  const FaceIDIcon = createTechIcon(
5607
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5607
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
5608
5608
  /* @__PURE__ */ jsx(
5609
5609
  "path",
5610
5610
  {
@@ -6058,7 +6058,7 @@ const _MobileIcons = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.define
6058
6058
  iOSIcon
6059
6059
  }, Symbol.toStringTag, { value: "Module" }));
6060
6060
  const TestPassedIcon = createTechIcon(
6061
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6061
+ ({ color: _color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6062
6062
  /* @__PURE__ */ jsx(
6063
6063
  "circle",
6064
6064
  {
@@ -6086,7 +6086,7 @@ const TestPassedIcon = createTechIcon(
6086
6086
  { displayName: "TestPassedIcon" }
6087
6087
  );
6088
6088
  const TestFailedIcon = createTechIcon(
6089
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6089
+ ({ color: _color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6090
6090
  /* @__PURE__ */ jsx(
6091
6091
  "circle",
6092
6092
  {
@@ -6112,7 +6112,7 @@ const TestFailedIcon = createTechIcon(
6112
6112
  { displayName: "TestFailedIcon" }
6113
6113
  );
6114
6114
  const TestSkippedIcon = createTechIcon(
6115
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6115
+ ({ color: _color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6116
6116
  /* @__PURE__ */ jsx(
6117
6117
  "circle",
6118
6118
  {
@@ -6138,7 +6138,7 @@ const TestSkippedIcon = createTechIcon(
6138
6138
  { displayName: "TestSkippedIcon" }
6139
6139
  );
6140
6140
  const TestPendingIcon = createTechIcon(
6141
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6141
+ ({ color: _color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6142
6142
  /* @__PURE__ */ jsx(
6143
6143
  "circle",
6144
6144
  {
@@ -6158,7 +6158,7 @@ const TestPendingIcon = createTechIcon(
6158
6158
  { displayName: "TestPendingIcon" }
6159
6159
  );
6160
6160
  const TestFlakyIcon = createTechIcon(
6161
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6161
+ ({ color: _color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6162
6162
  /* @__PURE__ */ jsx(
6163
6163
  "circle",
6164
6164
  {
@@ -6257,7 +6257,7 @@ const IntegrationTestIcon = createTechIcon(
6257
6257
  { displayName: "IntegrationTestIcon" }
6258
6258
  );
6259
6259
  const E2ETestIcon = createTechIcon(
6260
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6260
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6261
6261
  /* @__PURE__ */ jsx("circle", { cx: "4", cy: "12", r: "2", fill: accentColor || color }),
6262
6262
  /* @__PURE__ */ jsx("rect", { x: "8", y: "10", width: "3", height: "4", fill: color, opacity: "0.6" }),
6263
6263
  /* @__PURE__ */ jsx("rect", { x: "13", y: "10", width: "3", height: "4", fill: color, opacity: "0.6" }),
@@ -6268,7 +6268,7 @@ const E2ETestIcon = createTechIcon(
6268
6268
  { displayName: "E2ETestIcon" }
6269
6269
  );
6270
6270
  const PerformanceTestIcon = createTechIcon(
6271
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6271
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6272
6272
  /* @__PURE__ */ jsx("path", { d: "M2 14a10 10 0 0 1 20 0", fill: "none", stroke: color, strokeWidth: "2" }),
6273
6273
  /* @__PURE__ */ jsx("path", { d: "M12 14l4-6", stroke: accentColor || color, strokeWidth: "2", strokeLinecap: "round" }),
6274
6274
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "14", r: "2", fill: color }),
@@ -6364,7 +6364,7 @@ const A11yTestIcon = createTechIcon(
6364
6364
  { displayName: "A11yTestIcon" }
6365
6365
  );
6366
6366
  const VisualRegressionIcon = createTechIcon(
6367
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6367
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6368
6368
  /* @__PURE__ */ jsx(
6369
6369
  "rect",
6370
6370
  {
@@ -6422,7 +6422,7 @@ const SmokeTestIcon = createTechIcon(
6422
6422
  { displayName: "SmokeTestIcon" }
6423
6423
  );
6424
6424
  const RegressionTestIcon = createTechIcon(
6425
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6425
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6426
6426
  /* @__PURE__ */ jsx(
6427
6427
  "path",
6428
6428
  {
@@ -6567,7 +6567,7 @@ const MochaIcon = createTechIcon(
6567
6567
  { displayName: "MochaIcon" }
6568
6568
  );
6569
6569
  const VitestIcon = createTechIcon(
6570
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6570
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6571
6571
  /* @__PURE__ */ jsx("path", { d: "M4 6l8 12 8-12", fill: "none", stroke: color, strokeWidth: "2.5" }),
6572
6572
  /* @__PURE__ */ jsx("path", { d: "M10 10l2 3 4-5", stroke: accentColor || "#22c55e", strokeWidth: "2", fill: "none" })
6573
6573
  ] }),
@@ -6602,7 +6602,7 @@ const TestingLibraryIcon = createTechIcon(
6602
6602
  { displayName: "TestingLibraryIcon" }
6603
6603
  );
6604
6604
  const TestCoverageIcon = createTechIcon(
6605
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6605
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6606
6606
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8", fill: "none", stroke: color, strokeWidth: "2" }),
6607
6607
  /* @__PURE__ */ jsx("path", { d: "M12 4a8 8 0 0 1 8 8h-8z", fill: accentColor || "#22c55e" }),
6608
6608
  /* @__PURE__ */ jsx("text", { x: "8", y: "20", fontSize: "5", fill: color, children: "85%" })
@@ -6650,7 +6650,7 @@ const TestReportIcon = createTechIcon(
6650
6650
  { displayName: "TestReportIcon" }
6651
6651
  );
6652
6652
  const BugIcon = createTechIcon(
6653
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6653
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6654
6654
  /* @__PURE__ */ jsx(
6655
6655
  "ellipse",
6656
6656
  {
@@ -6913,7 +6913,7 @@ const _TestingIcons = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defin
6913
6913
  VitestIcon
6914
6914
  }, Symbol.toStringTag, { value: "Module" }));
6915
6915
  const PipelineIcon = createTechIcon(
6916
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6916
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6917
6917
  /* @__PURE__ */ jsx("circle", { cx: "4", cy: "12", r: "2", fill: accentColor || "#22c55e" }),
6918
6918
  /* @__PURE__ */ jsx("rect", { x: "8", y: "10", width: "4", height: "4", fill: color, opacity: "0.8" }),
6919
6919
  /* @__PURE__ */ jsx("rect", { x: "14", y: "10", width: "4", height: "4", fill: color, opacity: "0.8" }),
@@ -6983,7 +6983,7 @@ const ReleaseIcon = createTechIcon(
6983
6983
  { displayName: "ReleaseIcon" }
6984
6984
  );
6985
6985
  const RollbackIcon = createTechIcon(
6986
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6986
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
6987
6987
  /* @__PURE__ */ jsx("path", { d: "M4 12a8 8 0 1 1 2 5", fill: "none", stroke: color, strokeWidth: "2" }),
6988
6988
  /* @__PURE__ */ jsx("path", { d: "M4 12V6M4 12h6", stroke: color, strokeWidth: "2", strokeLinecap: "round" }),
6989
6989
  /* @__PURE__ */ jsx("text", { x: "10", y: "14", fontSize: "5", fill: accentColor || color, children: "v0" })
@@ -7011,7 +7011,7 @@ const StagingIcon = createTechIcon(
7011
7011
  { displayName: "StagingIcon" }
7012
7012
  );
7013
7013
  const ProductionIcon = createTechIcon(
7014
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7014
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7015
7015
  /* @__PURE__ */ jsx(
7016
7016
  "rect",
7017
7017
  {
@@ -7232,7 +7232,7 @@ const DroneCIIcon = createTechIcon(
7232
7232
  { displayName: "DroneCIIcon" }
7233
7233
  );
7234
7234
  const TerraformIcon = createTechIcon(
7235
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7235
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7236
7236
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "6", height: "6", fill: accentColor || color, opacity: "0.6" }),
7237
7237
  /* @__PURE__ */ jsx("rect", { x: "4", y: "12", width: "6", height: "6", fill: color, opacity: "0.8" }),
7238
7238
  /* @__PURE__ */ jsx("rect", { x: "12", y: "8", width: "6", height: "6", fill: color, opacity: "0.9" })
@@ -7282,7 +7282,7 @@ const PulumiIcon = createTechIcon(
7282
7282
  { displayName: "PulumiIcon" }
7283
7283
  );
7284
7284
  const HelmIcon = createTechIcon(
7285
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7285
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7286
7286
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8", fill: "none", stroke: color, strokeWidth: "2" }),
7287
7287
  /* @__PURE__ */ jsx(
7288
7288
  "circle",
@@ -7435,7 +7435,7 @@ const NewRelicIcon = createTechIcon(
7435
7435
  { displayName: "NewRelicIcon" }
7436
7436
  );
7437
7437
  const SentryIcon = createTechIcon(
7438
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7438
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7439
7439
  /* @__PURE__ */ jsx("path", { d: "M4 18L12 4l8 14", fill: "none", stroke: color, strokeWidth: "2" }),
7440
7440
  /* @__PURE__ */ jsx("path", { d: "M8 18L12 10l4 8", fill: "none", stroke: accentColor || color, strokeWidth: "2" }),
7441
7441
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "14", r: "2", fill: color })
@@ -7443,7 +7443,7 @@ const SentryIcon = createTechIcon(
7443
7443
  { displayName: "SentryIcon" }
7444
7444
  );
7445
7445
  const ELKIcon = createTechIcon(
7446
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7446
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7447
7447
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "16", height: "4", rx: "1", fill: color, opacity: "0.5" }),
7448
7448
  /* @__PURE__ */ jsx("rect", { x: "4", y: "10", width: "16", height: "4", rx: "1", fill: color, opacity: "0.7" }),
7449
7449
  /* @__PURE__ */ jsx("rect", { x: "4", y: "16", width: "16", height: "4", rx: "1", fill: accentColor || color, opacity: "0.9" }),
@@ -7491,7 +7491,7 @@ const GitOpsIcon = createTechIcon(
7491
7491
  { displayName: "GitOpsIcon" }
7492
7492
  );
7493
7493
  const IaCIcon = createTechIcon(
7494
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7494
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7495
7495
  /* @__PURE__ */ jsx("path", { d: "M8 6L4 12l4 6M16 6l4 6-4 6", stroke: color, strokeWidth: "2", fill: "none" }),
7496
7496
  /* @__PURE__ */ jsx("rect", { x: "10", y: "9", width: "4", height: "6", rx: "1", fill: accentColor || color, opacity: "0.6" }),
7497
7497
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "11", r: "0.5", fill: "#fff" })
@@ -7499,7 +7499,7 @@ const IaCIcon = createTechIcon(
7499
7499
  { displayName: "IaCIcon" }
7500
7500
  );
7501
7501
  const BlueGreenIcon = createTechIcon(
7502
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7502
+ ({ color, accentColor: _accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7503
7503
  /* @__PURE__ */ jsx("rect", { x: "4", y: "6", width: "6", height: "12", rx: "1", fill: "#3b82f6", opacity: "0.8" }),
7504
7504
  /* @__PURE__ */ jsx("rect", { x: "14", y: "6", width: "6", height: "12", rx: "1", fill: "#22c55e", opacity: "0.8" }),
7505
7505
  /* @__PURE__ */ jsx("path", { d: "M10 10h4M14 10l-2-2M14 10l-2 2", stroke: color, strokeWidth: "1.5", fill: "none" }),
@@ -7548,7 +7548,7 @@ const FeatureFlagIcon = createTechIcon(
7548
7548
  { displayName: "FeatureFlagIcon" }
7549
7549
  );
7550
7550
  const ServiceMeshIcon = createTechIcon(
7551
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7551
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7552
7552
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "6", r: "2", fill: color }),
7553
7553
  /* @__PURE__ */ jsx("circle", { cx: "18", cy: "6", r: "2", fill: color }),
7554
7554
  /* @__PURE__ */ jsx("circle", { cx: "6", cy: "18", r: "2", fill: color }),
@@ -7818,7 +7818,7 @@ const DynamoDBIcon = createTechIcon(
7818
7818
  { displayName: "DynamoDBIcon" }
7819
7819
  );
7820
7820
  const CouchDBIcon = createTechIcon(
7821
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7821
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
7822
7822
  /* @__PURE__ */ jsx("path", { d: "M4 16h16v2H4z", fill: color }),
7823
7823
  /* @__PURE__ */ jsx(
7824
7824
  "path",
@@ -7943,7 +7943,7 @@ const PlanetScaleIcon = createTechIcon(
7943
7943
  { displayName: "PlanetScaleIcon" }
7944
7944
  );
7945
7945
  const FaunaIcon = createTechIcon(
7946
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
7946
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
7947
7947
  "path",
7948
7948
  {
7949
7949
  d: "M12 2c-6 4-8 10-6 16 4-2 10-4 14-10-2 6-6 8-10 10 8-2 10-8 10-14-4 4-8 6-8 6 0-4-2-6 0-8z",
@@ -8100,7 +8100,7 @@ const ReplicationIcon = createTechIcon(
8100
8100
  { displayName: "ReplicationIcon" }
8101
8101
  );
8102
8102
  const ShardingIcon = createTechIcon(
8103
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8103
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8104
8104
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "6", height: "8", fill: color, opacity: "0.6" }),
8105
8105
  /* @__PURE__ */ jsx("rect", { x: "10", y: "4", width: "6", height: "8", fill: accentColor || color, opacity: "0.6" }),
8106
8106
  /* @__PURE__ */ jsx("rect", { x: "16", y: "4", width: "4", height: "8", fill: color, opacity: "0.6" }),
@@ -8140,7 +8140,7 @@ const IndexIcon = createTechIcon(
8140
8140
  { displayName: "IndexIcon" }
8141
8141
  );
8142
8142
  const QueryIcon = createTechIcon(
8143
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8143
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8144
8144
  /* @__PURE__ */ jsx("circle", { cx: "10", cy: "10", r: "6", fill: "none", stroke: color, strokeWidth: "2" }),
8145
8145
  /* @__PURE__ */ jsx("path", { d: "M14 14l6 6", stroke: color, strokeWidth: "2", strokeLinecap: "round" }),
8146
8146
  /* @__PURE__ */ jsx("text", { x: "7", y: "12", fontSize: "5", fill: accentColor || color, children: "?" })
@@ -8148,7 +8148,7 @@ const QueryIcon = createTechIcon(
8148
8148
  { displayName: "QueryIcon" }
8149
8149
  );
8150
8150
  const TransactionIcon = createTechIcon(
8151
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8151
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8152
8152
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8", fill: "none", stroke: color, strokeWidth: "2" }),
8153
8153
  /* @__PURE__ */ jsx("path", { d: "M8 8h8M12 8v8", stroke: accentColor || color, strokeWidth: "2" }),
8154
8154
  /* @__PURE__ */ jsx("path", { d: "M16 14l2 2 3-4", stroke: "#22c55e", strokeWidth: "1.5", fill: "none" })
@@ -8270,7 +8270,7 @@ const DataWarehouseIcon = createTechIcon(
8270
8270
  { displayName: "DataWarehouseIcon" }
8271
8271
  );
8272
8272
  const ETLIcon = createTechIcon(
8273
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8273
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8274
8274
  /* @__PURE__ */ jsx("rect", { x: "2", y: "8", width: "4", height: "6", fill: color, opacity: "0.6" }),
8275
8275
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "11", r: "3", fill: "none", stroke: accentColor || color, strokeWidth: "1.5" }),
8276
8276
  /* @__PURE__ */ jsx(
@@ -8287,7 +8287,7 @@ const ETLIcon = createTechIcon(
8287
8287
  { displayName: "ETLIcon" }
8288
8288
  );
8289
8289
  const SnowflakeIcon = createTechIcon(
8290
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8290
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8291
8291
  /* @__PURE__ */ jsx("path", { d: "M12 2v20M2 12h20M5 5l14 14M19 5L5 19", stroke: color, strokeWidth: "1.5" }),
8292
8292
  /* @__PURE__ */ jsx(
8293
8293
  "path",
@@ -8357,7 +8357,7 @@ const RedshiftIcon = createTechIcon(
8357
8357
  { displayName: "RedshiftIcon" }
8358
8358
  );
8359
8359
  const DatabricksIcon = createTechIcon(
8360
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8360
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8361
8361
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "6", height: "4", fill: color, opacity: "0.6" }),
8362
8362
  /* @__PURE__ */ jsx("rect", { x: "12", y: "4", width: "8", height: "4", fill: color, opacity: "0.6" }),
8363
8363
  /* @__PURE__ */ jsx("rect", { x: "4", y: "10", width: "8", height: "4", fill: accentColor || color, opacity: "0.7" }),
@@ -8749,7 +8749,7 @@ const LoadBalancerIcon = createTechIcon(
8749
8749
  { displayName: "LoadBalancerIcon" }
8750
8750
  );
8751
8751
  const GatewayIcon = createTechIcon(
8752
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8752
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8753
8753
  /* @__PURE__ */ jsx("path", { d: "M4 20V8a8 8 0 0 1 16 0v12", fill: "none", stroke: color, strokeWidth: "2" }),
8754
8754
  /* @__PURE__ */ jsx("path", { d: "M8 20V12M12 20V10M16 20V12", stroke: color, strokeWidth: "1.5" }),
8755
8755
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "6", r: "2", fill: accentColor || color })
@@ -8778,7 +8778,7 @@ const ProxyIcon = createTechIcon(
8778
8778
  { displayName: "ProxyIcon" }
8779
8779
  );
8780
8780
  const WiFiIcon = createTechIcon(
8781
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8781
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8782
8782
  /* @__PURE__ */ jsx("path", { d: "M12 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4z", fill: color }),
8783
8783
  /* @__PURE__ */ jsx("path", { d: "M6 14c3-3 9-3 12 0", fill: "none", stroke: color, strokeWidth: "2" }),
8784
8784
  /* @__PURE__ */ jsx("path", { d: "M2 10c5-5 15-5 20 0", fill: "none", stroke: accentColor || color, strokeWidth: "2" })
@@ -8786,7 +8786,7 @@ const WiFiIcon = createTechIcon(
8786
8786
  { displayName: "WiFiIcon" }
8787
8787
  );
8788
8788
  const BluetoothIcon = createTechIcon(
8789
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
8789
+ ({ color, accentColor: _accentColor, variant: _variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
8790
8790
  "path",
8791
8791
  {
8792
8792
  d: "M6 6l12 12M6 18l6-6V2l6 6-6 6-6-6 6-6",
@@ -8827,7 +8827,7 @@ const EthernetIcon = createTechIcon(
8827
8827
  { displayName: "EthernetIcon" }
8828
8828
  );
8829
8829
  const CellularIcon = createTechIcon(
8830
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8830
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8831
8831
  /* @__PURE__ */ jsx("rect", { x: "4", y: "16", width: "3", height: "4", fill: color }),
8832
8832
  /* @__PURE__ */ jsx("rect", { x: "8", y: "12", width: "3", height: "8", fill: color }),
8833
8833
  /* @__PURE__ */ jsx("rect", { x: "12", y: "8", width: "3", height: "12", fill: accentColor || color }),
@@ -8884,7 +8884,7 @@ const IPAddressIcon = createTechIcon(
8884
8884
  { displayName: "IPAddressIcon" }
8885
8885
  );
8886
8886
  const SubnetIcon = createTechIcon(
8887
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8887
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8888
8888
  /* @__PURE__ */ jsx("rect", { x: "4", y: "4", width: "16", height: "16", fill: "none", stroke: color, strokeWidth: "2" }),
8889
8889
  /* @__PURE__ */ jsx("path", { d: "M4 12h16M12 4v16", stroke: color, strokeWidth: "1", strokeDasharray: "2 2" }),
8890
8890
  /* @__PURE__ */ jsx("circle", { cx: "8", cy: "8", r: "1.5", fill: accentColor || color }),
@@ -8939,7 +8939,7 @@ const BandwidthIcon = createTechIcon(
8939
8939
  { displayName: "BandwidthIcon" }
8940
8940
  );
8941
8941
  const LatencyIcon = createTechIcon(
8942
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8942
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
8943
8943
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "8", fill: "none", stroke: color, strokeWidth: "2" }),
8944
8944
  /* @__PURE__ */ jsx("path", { d: "M12 6v6l4 2", stroke: accentColor || color, strokeWidth: "2", strokeLinecap: "round" }),
8945
8945
  /* @__PURE__ */ jsx("text", { x: "8", y: "22", fontSize: "4", fill: color, children: "ms" })
@@ -9711,7 +9711,7 @@ const CacheIcon = createTechIcon(
9711
9711
  { displayName: "CacheIcon" }
9712
9712
  );
9713
9713
  const CDNIcon = createTechIcon(
9714
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
9714
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
9715
9715
  /* @__PURE__ */ jsx("circle", { cx: "12", cy: "12", r: "9", fill: "none", stroke: color, strokeWidth: "1.5" }),
9716
9716
  /* @__PURE__ */ jsx("ellipse", { cx: "12", cy: "12", rx: "4", ry: "9", fill: "none", stroke: color, strokeWidth: "1" }),
9717
9717
  /* @__PURE__ */ jsx("path", { d: "M3 12h18", stroke: color, strokeWidth: "1" }),
@@ -9784,7 +9784,7 @@ const SDKIcon = createTechIcon(
9784
9784
  { displayName: "SDKIcon" }
9785
9785
  );
9786
9786
  const WebhookIcon = createTechIcon(
9787
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
9787
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
9788
9788
  /* @__PURE__ */ jsx(
9789
9789
  "path",
9790
9790
  {
@@ -10195,7 +10195,7 @@ const JetBrainsIcon = createTechIcon(
10195
10195
  { displayName: "JetBrainsIcon" }
10196
10196
  );
10197
10197
  const VimIcon = createTechIcon(
10198
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10198
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10199
10199
  /* @__PURE__ */ jsx(
10200
10200
  "path",
10201
10201
  {
@@ -10212,7 +10212,7 @@ const VimIcon = createTechIcon(
10212
10212
  { displayName: "VimIcon" }
10213
10213
  );
10214
10214
  const SublimeIcon = createTechIcon(
10215
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
10215
+ ({ color, accentColor: _accentColor, variant: _variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
10216
10216
  "path",
10217
10217
  {
10218
10218
  d: "M6 8c0-3 3-4 6-4s6 1 6 4c0 2-2 3-4 3H8c-2 0-4 2-4 4s3 5 8 5 8-2 8-5",
@@ -10345,7 +10345,7 @@ const GitIcon = createTechIcon(
10345
10345
  { displayName: "GitIcon" }
10346
10346
  );
10347
10347
  const GitHubIcon = createTechIcon(
10348
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
10348
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
10349
10349
  "path",
10350
10350
  {
10351
10351
  d: "M12 2C6.5 2 2 6.5 2 12c0 4.4 2.9 8.2 6.8 9.5.5.1.7-.2.7-.5v-1.7c-2.8.6-3.4-1.3-3.4-1.3-.5-1.1-1.1-1.4-1.1-1.4-.9-.6.1-.6.1-.6 1 .1 1.5 1 1.5 1 .9 1.5 2.3 1.1 2.9.8.1-.7.3-1.1.6-1.3-2.2-.3-4.6-1.1-4.6-5 0-1.1.4-2 1-2.7-.1-.2-.5-1.3.1-2.7 0 0 .8-.3 2.7 1 .8-.2 1.6-.3 2.4-.3s1.6.1 2.4.3c1.9-1.3 2.7-1 2.7-1 .6 1.4.2 2.5.1 2.7.6.7 1 1.6 1 2.7 0 3.9-2.4 4.7-4.6 5 .4.3.7.9.7 1.9v2.8c0 .3.2.6.7.5 4-1.3 6.8-5.1 6.8-9.5C22 6.5 17.5 2 12 2z",
@@ -10760,7 +10760,7 @@ const ESLintIcon = createTechIcon(
10760
10760
  { displayName: "ESLintIcon" }
10761
10761
  );
10762
10762
  const PrettierIcon = createTechIcon(
10763
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10763
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10764
10764
  /* @__PURE__ */ jsx(
10765
10765
  "path",
10766
10766
  {
@@ -10777,7 +10777,7 @@ const PrettierIcon = createTechIcon(
10777
10777
  { displayName: "PrettierIcon" }
10778
10778
  );
10779
10779
  const StyleLintIcon = createTechIcon(
10780
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10780
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10781
10781
  /* @__PURE__ */ jsx(
10782
10782
  "path",
10783
10783
  {
@@ -10830,7 +10830,7 @@ const DebuggerIcon = createTechIcon(
10830
10830
  { displayName: "DebuggerIcon" }
10831
10831
  );
10832
10832
  const BreakpointIcon = createTechIcon(
10833
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10833
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10834
10834
  /* @__PURE__ */ jsx("text", { x: "2", y: "8", fontSize: "5", fill: color, opacity: "0.5", children: "1" }),
10835
10835
  /* @__PURE__ */ jsx("text", { x: "2", y: "14", fontSize: "5", fill: color, opacity: "0.5", children: "2" }),
10836
10836
  /* @__PURE__ */ jsx("text", { x: "2", y: "20", fontSize: "5", fill: color, opacity: "0.5", children: "3" }),
@@ -10840,7 +10840,7 @@ const BreakpointIcon = createTechIcon(
10840
10840
  { displayName: "BreakpointIcon" }
10841
10841
  );
10842
10842
  const ProfilerIcon = createTechIcon(
10843
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10843
+ ({ color, accentColor, variant: _variant }) => /* @__PURE__ */ jsxs(Fragment, { children: [
10844
10844
  /* @__PURE__ */ jsx("rect", { x: "4", y: "12", width: "3", height: "8", fill: color }),
10845
10845
  /* @__PURE__ */ jsx("rect", { x: "7", y: "8", width: "3", height: "12", fill: accentColor || color }),
10846
10846
  /* @__PURE__ */ jsx("rect", { x: "10", y: "4", width: "3", height: "16", fill: color }),
@@ -10936,7 +10936,7 @@ const KeyboardShortcutIcon = createTechIcon(
10936
10936
  { displayName: "KeyboardShortcutIcon" }
10937
10937
  );
10938
10938
  const ExtensionIcon = createTechIcon(
10939
- ({ color, accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
10939
+ ({ color, accentColor: _accentColor, variant }) => /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
10940
10940
  "path",
10941
10941
  {
10942
10942
  d: "M4 8v12h12v-3c0-1 1-2 2-2s2 1 2 2v3h0V8c0 0-1-0-2 0s-2-1-2-2 1-2 2-2 2 0 2 0H4c0 0 0 1 0 2s-1 2-2 2-2-1-2-2 0-2 0-2z",