@biela.dev/devices 0.1.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.
@@ -0,0 +1,1302 @@
1
+ 'use strict';
2
+
3
+ var jsxRuntime = require('react/jsx-runtime');
4
+
5
+ // src/android/galaxy-s25-ultra/metadata.ts
6
+ var GALAXY_S25_ULTRA_META = {
7
+ id: "galaxy-s25-ultra",
8
+ name: "Galaxy S25 Ultra",
9
+ platform: "android",
10
+ year: 2025,
11
+ screen: {
12
+ width: 384,
13
+ height: 824,
14
+ physicalWidth: 1440,
15
+ physicalHeight: 3088,
16
+ dpr: 3.75,
17
+ aspectRatio: "19.5:9",
18
+ cornerRadius: 42,
19
+ ppi: 505
20
+ }
21
+ };
22
+ var GALAXY_S25_ULTRA_LAYOUT = {
23
+ meta: GALAXY_S25_ULTRA_META,
24
+ safeArea: {
25
+ portrait: { top: 38, bottom: 24, left: 0, right: 0 },
26
+ landscape: { top: 0, bottom: 24, left: 38, right: 38 }
27
+ },
28
+ hardwareOverlays: {
29
+ type: "punch-hole",
30
+ portrait: {
31
+ x: 187,
32
+ // centered: (384 - 10) / 2 = 187
33
+ y: 12,
34
+ width: 10,
35
+ height: 10,
36
+ shape: "circle",
37
+ cornerRadius: 5
38
+ }
39
+ },
40
+ statusBar: {
41
+ height: 28,
42
+ style: "fullwidth",
43
+ hasTime: true,
44
+ hasBattery: true,
45
+ hasSignal: true
46
+ },
47
+ homeIndicator: {
48
+ type: "gestureline",
49
+ height: 5,
50
+ width: 90,
51
+ visible: true
52
+ },
53
+ hardwareButtons: {
54
+ volumeUp: { side: "right", yPosition: 190 },
55
+ volumeDown: { side: "right", yPosition: 226 },
56
+ power: { side: "right", yPosition: 276 }
57
+ }
58
+ };
59
+ function GalaxyS25UltraSVG({ colorScheme = "dark", style }) {
60
+ const frameColor = colorScheme === "dark" ? "#1c1c1e" : "#e5e5e7";
61
+ const frameBorder = colorScheme === "dark" ? "#3a3a3c" : "#c7c7cc";
62
+ const buttonColor = colorScheme === "dark" ? "#2c2c2e" : "#d1d1d6";
63
+ const punchHoleColor = "#000000";
64
+ const bezelSide = 12;
65
+ const bezelTop = 18;
66
+ const bezelBottom = 18;
67
+ const screenW = 384;
68
+ const screenH = 824;
69
+ const totalW = screenW + bezelSide * 2;
70
+ const totalH = screenH + bezelTop + bezelBottom;
71
+ const cornerRadius = 42;
72
+ const outerRadius = cornerRadius + 8;
73
+ const screenRadius = cornerRadius;
74
+ return /* @__PURE__ */ jsxRuntime.jsxs(
75
+ "svg",
76
+ {
77
+ viewBox: `0 0 ${totalW} ${totalH}`,
78
+ width: totalW,
79
+ height: totalH,
80
+ xmlns: "http://www.w3.org/2000/svg",
81
+ style,
82
+ children: [
83
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", { children: [
84
+ /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", { id: "frame-gradient-galaxy-s25-ultra", x1: "0", y1: "0", x2: "1", y2: "1", children: [
85
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "0%", stopColor: frameColor }),
86
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "50%", stopColor: colorScheme === "dark" ? "#262628" : "#ededef" }),
87
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "100%", stopColor: frameColor })
88
+ ] }),
89
+ /* @__PURE__ */ jsxRuntime.jsxs("mask", { id: "frame-screen-mask-galaxy-s25-ultra", children: [
90
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "0", y: "0", width: totalW, height: totalH, fill: "white" }),
91
+ /* @__PURE__ */ jsxRuntime.jsx(
92
+ "rect",
93
+ {
94
+ x: bezelSide,
95
+ y: bezelTop,
96
+ width: screenW,
97
+ height: screenH,
98
+ rx: screenRadius,
99
+ ry: screenRadius,
100
+ fill: "black"
101
+ }
102
+ )
103
+ ] })
104
+ ] }),
105
+ /* @__PURE__ */ jsxRuntime.jsx(
106
+ "rect",
107
+ {
108
+ x: "0",
109
+ y: "0",
110
+ width: totalW,
111
+ height: totalH,
112
+ rx: outerRadius,
113
+ ry: outerRadius,
114
+ fill: "url(#frame-gradient-galaxy-s25-ultra)",
115
+ stroke: frameBorder,
116
+ strokeWidth: "1.5",
117
+ mask: "url(#frame-screen-mask-galaxy-s25-ultra)"
118
+ }
119
+ ),
120
+ /* @__PURE__ */ jsxRuntime.jsx(
121
+ "rect",
122
+ {
123
+ "data-zone": "screen-area",
124
+ x: bezelSide,
125
+ y: bezelTop,
126
+ width: screenW,
127
+ height: screenH,
128
+ rx: screenRadius,
129
+ ry: screenRadius,
130
+ fill: "none"
131
+ }
132
+ ),
133
+ /* @__PURE__ */ jsxRuntime.jsx(
134
+ "circle",
135
+ {
136
+ "data-zone": "hardware-overlay",
137
+ "data-zone-type": "punch-hole-camera",
138
+ cx: bezelSide + screenW / 2,
139
+ cy: bezelTop + 17,
140
+ r: "5",
141
+ fill: punchHoleColor
142
+ }
143
+ ),
144
+ /* @__PURE__ */ jsxRuntime.jsx(
145
+ "rect",
146
+ {
147
+ "data-zone": "safe-area-top-inset",
148
+ x: bezelSide,
149
+ y: bezelTop,
150
+ width: screenW,
151
+ height: "38",
152
+ fill: "transparent"
153
+ }
154
+ ),
155
+ /* @__PURE__ */ jsxRuntime.jsx(
156
+ "rect",
157
+ {
158
+ "data-zone": "safe-area-bottom-inset",
159
+ x: bezelSide,
160
+ y: bezelTop + screenH - 24,
161
+ width: screenW,
162
+ height: "24",
163
+ fill: "transparent"
164
+ }
165
+ ),
166
+ /* @__PURE__ */ jsxRuntime.jsx(
167
+ "rect",
168
+ {
169
+ "data-zone": "status-bar",
170
+ "data-zone-style": "punch-hole",
171
+ x: bezelSide,
172
+ y: bezelTop,
173
+ width: screenW,
174
+ height: "28",
175
+ fill: "transparent"
176
+ }
177
+ ),
178
+ /* @__PURE__ */ jsxRuntime.jsx(
179
+ "rect",
180
+ {
181
+ "data-zone": "home-indicator",
182
+ "data-zone-type": "gesture-bar",
183
+ x: bezelSide + (screenW - 90) / 2,
184
+ y: bezelTop + screenH - 10,
185
+ width: "90",
186
+ height: "3",
187
+ rx: "1.5",
188
+ ry: "1.5",
189
+ fill: "rgba(255,255,255,0.25)"
190
+ }
191
+ ),
192
+ /* @__PURE__ */ jsxRuntime.jsx(
193
+ "rect",
194
+ {
195
+ "data-button": "volume-up",
196
+ "data-side": "right",
197
+ x: totalW - 2,
198
+ y: "190",
199
+ width: "3",
200
+ height: "28",
201
+ rx: "1.5",
202
+ fill: buttonColor
203
+ }
204
+ ),
205
+ /* @__PURE__ */ jsxRuntime.jsx(
206
+ "rect",
207
+ {
208
+ "data-button": "volume-down",
209
+ "data-side": "right",
210
+ x: totalW - 2,
211
+ y: "226",
212
+ width: "3",
213
+ height: "28",
214
+ rx: "1.5",
215
+ fill: buttonColor
216
+ }
217
+ ),
218
+ /* @__PURE__ */ jsxRuntime.jsx(
219
+ "rect",
220
+ {
221
+ "data-button": "power",
222
+ "data-side": "right",
223
+ x: totalW - 2,
224
+ y: "276",
225
+ width: "3",
226
+ height: "36",
227
+ rx: "1.5",
228
+ fill: buttonColor
229
+ }
230
+ ),
231
+ /* @__PURE__ */ jsxRuntime.jsx(
232
+ "rect",
233
+ {
234
+ x: (totalW - 24) / 2,
235
+ y: totalH - 5,
236
+ width: "24",
237
+ height: "4",
238
+ rx: "2",
239
+ fill: colorScheme === "dark" ? "#111" : "#bbb"
240
+ }
241
+ ),
242
+ /* @__PURE__ */ jsxRuntime.jsx(
243
+ "rect",
244
+ {
245
+ x: totalW - bezelSide - 40,
246
+ y: totalH - 4,
247
+ width: "16",
248
+ height: "3",
249
+ rx: "1",
250
+ fill: colorScheme === "dark" ? "#0a0a0a" : "#aaa"
251
+ }
252
+ )
253
+ ]
254
+ }
255
+ );
256
+ }
257
+ var GALAXY_S25_ULTRA_FRAME = {
258
+ bezelTop: 18,
259
+ bezelBottom: 18,
260
+ bezelLeft: 12,
261
+ bezelRight: 12,
262
+ totalWidth: 408,
263
+ totalHeight: 860,
264
+ screenWidth: 384,
265
+ screenHeight: 824,
266
+ screenRadius: 42
267
+ };
268
+
269
+ // src/android/galaxy-s25/metadata.ts
270
+ var GALAXY_S25_META = {
271
+ id: "galaxy-s25",
272
+ name: "Galaxy S25",
273
+ platform: "android",
274
+ year: 2025,
275
+ screen: {
276
+ width: 360,
277
+ height: 780,
278
+ physicalWidth: 1080,
279
+ physicalHeight: 2340,
280
+ dpr: 3,
281
+ aspectRatio: "19.5:9",
282
+ cornerRadius: 42,
283
+ ppi: 425
284
+ }
285
+ };
286
+ var GALAXY_S25_LAYOUT = {
287
+ meta: GALAXY_S25_META,
288
+ safeArea: {
289
+ portrait: { top: 32, bottom: 24, left: 0, right: 0 },
290
+ landscape: { top: 0, bottom: 24, left: 32, right: 32 }
291
+ },
292
+ hardwareOverlays: {
293
+ type: "punch-hole",
294
+ portrait: {
295
+ x: 176,
296
+ // centered: (360 - 9) / 2 ~ 176
297
+ y: 12,
298
+ width: 9,
299
+ height: 9,
300
+ shape: "circle",
301
+ cornerRadius: 4.5
302
+ }
303
+ },
304
+ statusBar: {
305
+ height: 32,
306
+ style: "fullwidth",
307
+ hasTime: true,
308
+ hasBattery: true,
309
+ hasSignal: true
310
+ },
311
+ homeIndicator: {
312
+ type: "gestureline",
313
+ height: 5,
314
+ width: 90,
315
+ visible: true
316
+ },
317
+ hardwareButtons: {
318
+ volumeUp: { side: "right", yPosition: 180 },
319
+ volumeDown: { side: "right", yPosition: 214 },
320
+ power: { side: "right", yPosition: 260 }
321
+ }
322
+ };
323
+ function GalaxyS25SVG({ colorScheme = "dark", style }) {
324
+ const frameColor = colorScheme === "dark" ? "#1c1c1e" : "#e5e5e7";
325
+ const frameBorder = colorScheme === "dark" ? "#3a3a3c" : "#c7c7cc";
326
+ const buttonColor = colorScheme === "dark" ? "#2c2c2e" : "#d1d1d6";
327
+ const punchHoleColor = "#000000";
328
+ const bezelSide = 12;
329
+ const bezelTop = 18;
330
+ const bezelBottom = 18;
331
+ const screenW = 360;
332
+ const screenH = 780;
333
+ const totalW = screenW + bezelSide * 2;
334
+ const totalH = screenH + bezelTop + bezelBottom;
335
+ const cornerRadius = 42;
336
+ const outerRadius = cornerRadius + 8;
337
+ const screenRadius = cornerRadius;
338
+ return /* @__PURE__ */ jsxRuntime.jsxs(
339
+ "svg",
340
+ {
341
+ viewBox: `0 0 ${totalW} ${totalH}`,
342
+ width: totalW,
343
+ height: totalH,
344
+ xmlns: "http://www.w3.org/2000/svg",
345
+ style,
346
+ children: [
347
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", { children: [
348
+ /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", { id: "frame-gradient-galaxy-s25", x1: "0", y1: "0", x2: "1", y2: "1", children: [
349
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "0%", stopColor: frameColor }),
350
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "50%", stopColor: colorScheme === "dark" ? "#262628" : "#ededef" }),
351
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "100%", stopColor: frameColor })
352
+ ] }),
353
+ /* @__PURE__ */ jsxRuntime.jsxs("mask", { id: "frame-screen-mask-galaxy-s25", children: [
354
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "0", y: "0", width: totalW, height: totalH, fill: "white" }),
355
+ /* @__PURE__ */ jsxRuntime.jsx(
356
+ "rect",
357
+ {
358
+ x: bezelSide,
359
+ y: bezelTop,
360
+ width: screenW,
361
+ height: screenH,
362
+ rx: screenRadius,
363
+ ry: screenRadius,
364
+ fill: "black"
365
+ }
366
+ )
367
+ ] })
368
+ ] }),
369
+ /* @__PURE__ */ jsxRuntime.jsx(
370
+ "rect",
371
+ {
372
+ x: "0",
373
+ y: "0",
374
+ width: totalW,
375
+ height: totalH,
376
+ rx: outerRadius,
377
+ ry: outerRadius,
378
+ fill: "url(#frame-gradient-galaxy-s25)",
379
+ stroke: frameBorder,
380
+ strokeWidth: "1.5",
381
+ mask: "url(#frame-screen-mask-galaxy-s25)"
382
+ }
383
+ ),
384
+ /* @__PURE__ */ jsxRuntime.jsx(
385
+ "rect",
386
+ {
387
+ "data-zone": "screen-area",
388
+ x: bezelSide,
389
+ y: bezelTop,
390
+ width: screenW,
391
+ height: screenH,
392
+ rx: screenRadius,
393
+ ry: screenRadius,
394
+ fill: "none"
395
+ }
396
+ ),
397
+ /* @__PURE__ */ jsxRuntime.jsx(
398
+ "circle",
399
+ {
400
+ "data-zone": "hardware-overlay",
401
+ "data-zone-type": "punch-hole-camera",
402
+ cx: bezelSide + screenW / 2,
403
+ cy: bezelTop + 16.5,
404
+ r: "4.5",
405
+ fill: punchHoleColor
406
+ }
407
+ ),
408
+ /* @__PURE__ */ jsxRuntime.jsx(
409
+ "rect",
410
+ {
411
+ "data-zone": "safe-area-top-inset",
412
+ x: bezelSide,
413
+ y: bezelTop,
414
+ width: screenW,
415
+ height: "32",
416
+ fill: "transparent"
417
+ }
418
+ ),
419
+ /* @__PURE__ */ jsxRuntime.jsx(
420
+ "rect",
421
+ {
422
+ "data-zone": "safe-area-bottom-inset",
423
+ x: bezelSide,
424
+ y: bezelTop + screenH - 24,
425
+ width: screenW,
426
+ height: "24",
427
+ fill: "transparent"
428
+ }
429
+ ),
430
+ /* @__PURE__ */ jsxRuntime.jsx(
431
+ "rect",
432
+ {
433
+ "data-zone": "status-bar",
434
+ "data-zone-style": "punch-hole",
435
+ x: bezelSide,
436
+ y: bezelTop,
437
+ width: screenW,
438
+ height: "32",
439
+ fill: "transparent"
440
+ }
441
+ ),
442
+ /* @__PURE__ */ jsxRuntime.jsx(
443
+ "rect",
444
+ {
445
+ "data-zone": "home-indicator",
446
+ "data-zone-type": "gesture-bar",
447
+ x: bezelSide + (screenW - 90) / 2,
448
+ y: bezelTop + screenH - 10,
449
+ width: "90",
450
+ height: "3",
451
+ rx: "1.5",
452
+ ry: "1.5",
453
+ fill: "rgba(255,255,255,0.25)"
454
+ }
455
+ ),
456
+ /* @__PURE__ */ jsxRuntime.jsx(
457
+ "rect",
458
+ {
459
+ "data-button": "volume-up",
460
+ "data-side": "right",
461
+ x: totalW - 2,
462
+ y: "180",
463
+ width: "3",
464
+ height: "28",
465
+ rx: "1.5",
466
+ fill: buttonColor
467
+ }
468
+ ),
469
+ /* @__PURE__ */ jsxRuntime.jsx(
470
+ "rect",
471
+ {
472
+ "data-button": "volume-down",
473
+ "data-side": "right",
474
+ x: totalW - 2,
475
+ y: "216",
476
+ width: "3",
477
+ height: "28",
478
+ rx: "1.5",
479
+ fill: buttonColor
480
+ }
481
+ ),
482
+ /* @__PURE__ */ jsxRuntime.jsx(
483
+ "rect",
484
+ {
485
+ "data-button": "power",
486
+ "data-side": "right",
487
+ x: totalW - 2,
488
+ y: "266",
489
+ width: "3",
490
+ height: "36",
491
+ rx: "1.5",
492
+ fill: buttonColor
493
+ }
494
+ ),
495
+ /* @__PURE__ */ jsxRuntime.jsx(
496
+ "rect",
497
+ {
498
+ x: (totalW - 24) / 2,
499
+ y: totalH - 5,
500
+ width: "24",
501
+ height: "4",
502
+ rx: "2",
503
+ fill: colorScheme === "dark" ? "#111" : "#bbb"
504
+ }
505
+ )
506
+ ]
507
+ }
508
+ );
509
+ }
510
+ var GALAXY_S25_FRAME = {
511
+ bezelTop: 18,
512
+ bezelBottom: 18,
513
+ bezelLeft: 12,
514
+ bezelRight: 12,
515
+ totalWidth: 384,
516
+ totalHeight: 816,
517
+ screenWidth: 360,
518
+ screenHeight: 780,
519
+ screenRadius: 42
520
+ };
521
+
522
+ // src/android/galaxy-s25-edge/metadata.ts
523
+ var GALAXY_S25_EDGE_META = {
524
+ id: "galaxy-s25-edge",
525
+ name: "Galaxy S25 Edge",
526
+ platform: "android",
527
+ year: 2025,
528
+ screen: {
529
+ width: 382,
530
+ height: 824,
531
+ physicalWidth: 1440,
532
+ physicalHeight: 3120,
533
+ dpr: 3.75,
534
+ aspectRatio: "19.5:9",
535
+ cornerRadius: 42,
536
+ ppi: 510
537
+ }
538
+ };
539
+ var GALAXY_S25_EDGE_LAYOUT = {
540
+ meta: GALAXY_S25_EDGE_META,
541
+ safeArea: {
542
+ portrait: { top: 32, bottom: 24, left: 0, right: 0 },
543
+ landscape: { top: 0, bottom: 24, left: 32, right: 32 }
544
+ },
545
+ hardwareOverlays: {
546
+ type: "punch-hole",
547
+ portrait: {
548
+ x: 187,
549
+ // centered: (382 - 8) / 2 = 187
550
+ y: 12,
551
+ width: 8,
552
+ height: 8,
553
+ shape: "circle",
554
+ cornerRadius: 4
555
+ }
556
+ },
557
+ statusBar: {
558
+ height: 32,
559
+ style: "fullwidth",
560
+ hasTime: true,
561
+ hasBattery: true,
562
+ hasSignal: true
563
+ },
564
+ homeIndicator: {
565
+ type: "gestureline",
566
+ height: 5,
567
+ width: 90,
568
+ visible: true
569
+ },
570
+ hardwareButtons: {
571
+ volumeUp: { side: "right", yPosition: 185 },
572
+ volumeDown: { side: "right", yPosition: 220 },
573
+ power: { side: "right", yPosition: 268 }
574
+ }
575
+ };
576
+ function GalaxyS25EdgeSVG({ colorScheme = "dark", style }) {
577
+ const frameColor = colorScheme === "dark" ? "#1c1c1e" : "#e5e5e7";
578
+ const frameBorder = colorScheme === "dark" ? "#3a3a3c" : "#c7c7cc";
579
+ const buttonColor = colorScheme === "dark" ? "#2c2c2e" : "#d1d1d6";
580
+ const punchHoleColor = "#000000";
581
+ const bezelSide = 8;
582
+ const bezelTop = 14;
583
+ const bezelBottom = 14;
584
+ const screenW = 382;
585
+ const screenH = 824;
586
+ const totalW = screenW + bezelSide * 2;
587
+ const totalH = screenH + bezelTop + bezelBottom;
588
+ const cornerRadius = 42;
589
+ const outerRadius = cornerRadius + 6;
590
+ const screenRadius = cornerRadius;
591
+ return /* @__PURE__ */ jsxRuntime.jsxs(
592
+ "svg",
593
+ {
594
+ viewBox: `0 0 ${totalW} ${totalH}`,
595
+ width: totalW,
596
+ height: totalH,
597
+ xmlns: "http://www.w3.org/2000/svg",
598
+ style,
599
+ children: [
600
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", { children: [
601
+ /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", { id: "frame-gradient-galaxy-s25-edge", x1: "0", y1: "0", x2: "1", y2: "1", children: [
602
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "0%", stopColor: frameColor }),
603
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "50%", stopColor: colorScheme === "dark" ? "#262628" : "#ededef" }),
604
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "100%", stopColor: frameColor })
605
+ ] }),
606
+ /* @__PURE__ */ jsxRuntime.jsxs("mask", { id: "frame-screen-mask-galaxy-s25-edge", children: [
607
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "0", y: "0", width: totalW, height: totalH, fill: "white" }),
608
+ /* @__PURE__ */ jsxRuntime.jsx(
609
+ "rect",
610
+ {
611
+ x: bezelSide,
612
+ y: bezelTop,
613
+ width: screenW,
614
+ height: screenH,
615
+ rx: screenRadius,
616
+ ry: screenRadius,
617
+ fill: "black"
618
+ }
619
+ )
620
+ ] })
621
+ ] }),
622
+ /* @__PURE__ */ jsxRuntime.jsx(
623
+ "rect",
624
+ {
625
+ x: "0",
626
+ y: "0",
627
+ width: totalW,
628
+ height: totalH,
629
+ rx: outerRadius,
630
+ ry: outerRadius,
631
+ fill: "url(#frame-gradient-galaxy-s25-edge)",
632
+ stroke: frameBorder,
633
+ strokeWidth: "1.5",
634
+ mask: "url(#frame-screen-mask-galaxy-s25-edge)"
635
+ }
636
+ ),
637
+ /* @__PURE__ */ jsxRuntime.jsx(
638
+ "rect",
639
+ {
640
+ "data-zone": "screen-area",
641
+ x: bezelSide,
642
+ y: bezelTop,
643
+ width: screenW,
644
+ height: screenH,
645
+ rx: screenRadius,
646
+ ry: screenRadius,
647
+ fill: "none"
648
+ }
649
+ ),
650
+ /* @__PURE__ */ jsxRuntime.jsx(
651
+ "circle",
652
+ {
653
+ "data-zone": "hardware-overlay",
654
+ "data-zone-type": "punch-hole-camera",
655
+ cx: bezelSide + screenW / 2,
656
+ cy: bezelTop + 16,
657
+ r: "4",
658
+ fill: punchHoleColor
659
+ }
660
+ ),
661
+ /* @__PURE__ */ jsxRuntime.jsx(
662
+ "rect",
663
+ {
664
+ "data-zone": "safe-area-top-inset",
665
+ x: bezelSide,
666
+ y: bezelTop,
667
+ width: screenW,
668
+ height: "32",
669
+ fill: "transparent"
670
+ }
671
+ ),
672
+ /* @__PURE__ */ jsxRuntime.jsx(
673
+ "rect",
674
+ {
675
+ "data-zone": "safe-area-bottom-inset",
676
+ x: bezelSide,
677
+ y: bezelTop + screenH - 24,
678
+ width: screenW,
679
+ height: "24",
680
+ fill: "transparent"
681
+ }
682
+ ),
683
+ /* @__PURE__ */ jsxRuntime.jsx(
684
+ "rect",
685
+ {
686
+ "data-zone": "status-bar",
687
+ "data-zone-style": "punch-hole",
688
+ x: bezelSide,
689
+ y: bezelTop,
690
+ width: screenW,
691
+ height: "32",
692
+ fill: "transparent"
693
+ }
694
+ ),
695
+ /* @__PURE__ */ jsxRuntime.jsx(
696
+ "rect",
697
+ {
698
+ "data-zone": "home-indicator",
699
+ "data-zone-type": "gesture-bar",
700
+ x: bezelSide + (screenW - 90) / 2,
701
+ y: bezelTop + screenH - 10,
702
+ width: "90",
703
+ height: "3",
704
+ rx: "1.5",
705
+ ry: "1.5",
706
+ fill: "rgba(255,255,255,0.25)"
707
+ }
708
+ ),
709
+ /* @__PURE__ */ jsxRuntime.jsx(
710
+ "rect",
711
+ {
712
+ "data-button": "volume-up",
713
+ "data-side": "right",
714
+ x: totalW - 2,
715
+ y: "186",
716
+ width: "3",
717
+ height: "28",
718
+ rx: "1.5",
719
+ fill: buttonColor
720
+ }
721
+ ),
722
+ /* @__PURE__ */ jsxRuntime.jsx(
723
+ "rect",
724
+ {
725
+ "data-button": "volume-down",
726
+ "data-side": "right",
727
+ x: totalW - 2,
728
+ y: "222",
729
+ width: "3",
730
+ height: "28",
731
+ rx: "1.5",
732
+ fill: buttonColor
733
+ }
734
+ ),
735
+ /* @__PURE__ */ jsxRuntime.jsx(
736
+ "rect",
737
+ {
738
+ "data-button": "power",
739
+ "data-side": "right",
740
+ x: totalW - 2,
741
+ y: "272",
742
+ width: "3",
743
+ height: "36",
744
+ rx: "1.5",
745
+ fill: buttonColor
746
+ }
747
+ ),
748
+ /* @__PURE__ */ jsxRuntime.jsx(
749
+ "rect",
750
+ {
751
+ x: (totalW - 24) / 2,
752
+ y: totalH - 5,
753
+ width: "24",
754
+ height: "4",
755
+ rx: "2",
756
+ fill: colorScheme === "dark" ? "#111" : "#bbb"
757
+ }
758
+ )
759
+ ]
760
+ }
761
+ );
762
+ }
763
+ var GALAXY_S25_EDGE_FRAME = {
764
+ bezelTop: 14,
765
+ bezelBottom: 14,
766
+ bezelLeft: 8,
767
+ bezelRight: 8,
768
+ totalWidth: 398,
769
+ totalHeight: 852,
770
+ screenWidth: 382,
771
+ screenHeight: 824,
772
+ screenRadius: 42
773
+ };
774
+
775
+ // src/android/pixel-9-pro-xl/metadata.ts
776
+ var PIXEL_9_PRO_XL_META = {
777
+ id: "pixel-9-pro-xl",
778
+ name: "Pixel 9 Pro XL",
779
+ platform: "android",
780
+ year: 2024,
781
+ screen: {
782
+ width: 448,
783
+ height: 968,
784
+ physicalWidth: 1344,
785
+ physicalHeight: 2904,
786
+ dpr: 3,
787
+ aspectRatio: "19.5:9",
788
+ cornerRadius: 48,
789
+ ppi: 486
790
+ }
791
+ };
792
+ var PIXEL_9_PRO_XL_LAYOUT = {
793
+ meta: PIXEL_9_PRO_XL_META,
794
+ safeArea: {
795
+ portrait: { top: 32, bottom: 24, left: 0, right: 0 },
796
+ landscape: { top: 0, bottom: 24, left: 32, right: 32 }
797
+ },
798
+ hardwareOverlays: {
799
+ type: "punch-hole",
800
+ portrait: {
801
+ x: 219,
802
+ // centered: (448 - 11) / 2 ~ 219
803
+ y: 12,
804
+ width: 11,
805
+ height: 11,
806
+ shape: "circle",
807
+ cornerRadius: 5.5
808
+ }
809
+ },
810
+ statusBar: {
811
+ height: 32,
812
+ style: "fullwidth",
813
+ hasTime: true,
814
+ hasBattery: true,
815
+ hasSignal: true
816
+ },
817
+ homeIndicator: {
818
+ type: "gestureline",
819
+ height: 5,
820
+ width: 90,
821
+ visible: true
822
+ },
823
+ hardwareButtons: {
824
+ volumeUp: { side: "left", yPosition: 195 },
825
+ volumeDown: { side: "left", yPosition: 235 },
826
+ power: { side: "right", yPosition: 215 }
827
+ }
828
+ };
829
+ function Pixel9ProXLSVG({ colorScheme = "dark", style }) {
830
+ const frameColor = colorScheme === "dark" ? "#1c1c1e" : "#e5e5e7";
831
+ const frameBorder = colorScheme === "dark" ? "#3a3a3c" : "#c7c7cc";
832
+ const buttonColor = colorScheme === "dark" ? "#2c2c2e" : "#d1d1d6";
833
+ const punchHoleColor = "#000000";
834
+ const bezelSide = 12;
835
+ const bezelTop = 18;
836
+ const bezelBottom = 18;
837
+ const screenW = 448;
838
+ const screenH = 968;
839
+ const totalW = screenW + bezelSide * 2;
840
+ const totalH = screenH + bezelTop + bezelBottom;
841
+ const cornerRadius = 48;
842
+ const outerRadius = cornerRadius + 8;
843
+ const screenRadius = cornerRadius;
844
+ return /* @__PURE__ */ jsxRuntime.jsxs(
845
+ "svg",
846
+ {
847
+ viewBox: `0 0 ${totalW} ${totalH}`,
848
+ width: totalW,
849
+ height: totalH,
850
+ xmlns: "http://www.w3.org/2000/svg",
851
+ style,
852
+ children: [
853
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", { children: [
854
+ /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", { id: "frame-gradient-pixel-9-pro-xl", x1: "0", y1: "0", x2: "1", y2: "1", children: [
855
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "0%", stopColor: frameColor }),
856
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "50%", stopColor: colorScheme === "dark" ? "#262628" : "#ededef" }),
857
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "100%", stopColor: frameColor })
858
+ ] }),
859
+ /* @__PURE__ */ jsxRuntime.jsxs("mask", { id: "frame-screen-mask-pixel-9-pro-xl", children: [
860
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "0", y: "0", width: totalW, height: totalH, fill: "white" }),
861
+ /* @__PURE__ */ jsxRuntime.jsx(
862
+ "rect",
863
+ {
864
+ x: bezelSide,
865
+ y: bezelTop,
866
+ width: screenW,
867
+ height: screenH,
868
+ rx: screenRadius,
869
+ ry: screenRadius,
870
+ fill: "black"
871
+ }
872
+ )
873
+ ] })
874
+ ] }),
875
+ /* @__PURE__ */ jsxRuntime.jsx(
876
+ "rect",
877
+ {
878
+ x: "0",
879
+ y: "0",
880
+ width: totalW,
881
+ height: totalH,
882
+ rx: outerRadius,
883
+ ry: outerRadius,
884
+ fill: "url(#frame-gradient-pixel-9-pro-xl)",
885
+ stroke: frameBorder,
886
+ strokeWidth: "1.5",
887
+ mask: "url(#frame-screen-mask-pixel-9-pro-xl)"
888
+ }
889
+ ),
890
+ /* @__PURE__ */ jsxRuntime.jsx(
891
+ "rect",
892
+ {
893
+ "data-zone": "screen-area",
894
+ x: bezelSide,
895
+ y: bezelTop,
896
+ width: screenW,
897
+ height: screenH,
898
+ rx: screenRadius,
899
+ ry: screenRadius,
900
+ fill: "none"
901
+ }
902
+ ),
903
+ /* @__PURE__ */ jsxRuntime.jsx(
904
+ "circle",
905
+ {
906
+ "data-zone": "hardware-overlay",
907
+ "data-zone-type": "punch-hole-camera",
908
+ cx: bezelSide + screenW / 2,
909
+ cy: bezelTop + 17.5,
910
+ r: "5.5",
911
+ fill: punchHoleColor
912
+ }
913
+ ),
914
+ /* @__PURE__ */ jsxRuntime.jsx(
915
+ "rect",
916
+ {
917
+ "data-zone": "safe-area-top-inset",
918
+ x: bezelSide,
919
+ y: bezelTop,
920
+ width: screenW,
921
+ height: "32",
922
+ fill: "transparent"
923
+ }
924
+ ),
925
+ /* @__PURE__ */ jsxRuntime.jsx(
926
+ "rect",
927
+ {
928
+ "data-zone": "safe-area-bottom-inset",
929
+ x: bezelSide,
930
+ y: bezelTop + screenH - 24,
931
+ width: screenW,
932
+ height: "24",
933
+ fill: "transparent"
934
+ }
935
+ ),
936
+ /* @__PURE__ */ jsxRuntime.jsx(
937
+ "rect",
938
+ {
939
+ "data-zone": "status-bar",
940
+ "data-zone-style": "punch-hole",
941
+ x: bezelSide,
942
+ y: bezelTop,
943
+ width: screenW,
944
+ height: "32",
945
+ fill: "transparent"
946
+ }
947
+ ),
948
+ /* @__PURE__ */ jsxRuntime.jsx(
949
+ "rect",
950
+ {
951
+ "data-zone": "home-indicator",
952
+ "data-zone-type": "gesture-bar",
953
+ x: bezelSide + (screenW - 90) / 2,
954
+ y: bezelTop + screenH - 10,
955
+ width: "90",
956
+ height: "3",
957
+ rx: "1.5",
958
+ ry: "1.5",
959
+ fill: "rgba(255,255,255,0.25)"
960
+ }
961
+ ),
962
+ /* @__PURE__ */ jsxRuntime.jsx(
963
+ "rect",
964
+ {
965
+ "data-button": "power",
966
+ "data-side": "right",
967
+ x: totalW - 2,
968
+ y: "220",
969
+ width: "3",
970
+ height: "36",
971
+ rx: "1.5",
972
+ fill: buttonColor
973
+ }
974
+ ),
975
+ /* @__PURE__ */ jsxRuntime.jsx(
976
+ "rect",
977
+ {
978
+ "data-button": "volume-up",
979
+ "data-side": "left",
980
+ x: -1,
981
+ y: "250",
982
+ width: "3",
983
+ height: "28",
984
+ rx: "1.5",
985
+ fill: buttonColor
986
+ }
987
+ ),
988
+ /* @__PURE__ */ jsxRuntime.jsx(
989
+ "rect",
990
+ {
991
+ "data-button": "volume-down",
992
+ "data-side": "left",
993
+ x: -1,
994
+ y: "286",
995
+ width: "3",
996
+ height: "28",
997
+ rx: "1.5",
998
+ fill: buttonColor
999
+ }
1000
+ ),
1001
+ /* @__PURE__ */ jsxRuntime.jsx(
1002
+ "rect",
1003
+ {
1004
+ x: (totalW - 24) / 2,
1005
+ y: totalH - 5,
1006
+ width: "24",
1007
+ height: "4",
1008
+ rx: "2",
1009
+ fill: colorScheme === "dark" ? "#111" : "#bbb"
1010
+ }
1011
+ )
1012
+ ]
1013
+ }
1014
+ );
1015
+ }
1016
+ var PIXEL_9_PRO_XL_FRAME = {
1017
+ bezelTop: 18,
1018
+ bezelBottom: 18,
1019
+ bezelLeft: 12,
1020
+ bezelRight: 12,
1021
+ totalWidth: 472,
1022
+ totalHeight: 1004,
1023
+ screenWidth: 448,
1024
+ screenHeight: 968,
1025
+ screenRadius: 48
1026
+ };
1027
+
1028
+ // src/android/pixel-9-pro/metadata.ts
1029
+ var PIXEL_9_PRO_META = {
1030
+ id: "pixel-9-pro",
1031
+ name: "Pixel 9 Pro",
1032
+ platform: "android",
1033
+ year: 2024,
1034
+ screen: {
1035
+ width: 393,
1036
+ height: 851,
1037
+ physicalWidth: 1080,
1038
+ physicalHeight: 2340,
1039
+ dpr: 3,
1040
+ aspectRatio: "19.5:9",
1041
+ cornerRadius: 48,
1042
+ ppi: 423
1043
+ }
1044
+ };
1045
+ var PIXEL_9_PRO_LAYOUT = {
1046
+ meta: PIXEL_9_PRO_META,
1047
+ safeArea: {
1048
+ portrait: { top: 32, bottom: 24, left: 0, right: 0 },
1049
+ landscape: { top: 0, bottom: 24, left: 32, right: 32 }
1050
+ },
1051
+ hardwareOverlays: {
1052
+ type: "punch-hole",
1053
+ portrait: {
1054
+ x: 192,
1055
+ // centered: (393 - 10) / 2 ~ 192
1056
+ y: 12,
1057
+ width: 10,
1058
+ height: 10,
1059
+ shape: "circle",
1060
+ cornerRadius: 5
1061
+ }
1062
+ },
1063
+ statusBar: {
1064
+ height: 32,
1065
+ style: "fullwidth",
1066
+ hasTime: true,
1067
+ hasBattery: true,
1068
+ hasSignal: true
1069
+ },
1070
+ homeIndicator: {
1071
+ type: "gestureline",
1072
+ height: 5,
1073
+ width: 90,
1074
+ visible: true
1075
+ },
1076
+ hardwareButtons: {
1077
+ volumeUp: { side: "left", yPosition: 185 },
1078
+ volumeDown: { side: "left", yPosition: 220 },
1079
+ power: { side: "right", yPosition: 205 }
1080
+ }
1081
+ };
1082
+ function Pixel9ProSVG({ colorScheme = "dark", style }) {
1083
+ const frameColor = colorScheme === "dark" ? "#1c1c1e" : "#e5e5e7";
1084
+ const frameBorder = colorScheme === "dark" ? "#3a3a3c" : "#c7c7cc";
1085
+ const buttonColor = colorScheme === "dark" ? "#2c2c2e" : "#d1d1d6";
1086
+ const punchHoleColor = "#000000";
1087
+ const bezelSide = 12;
1088
+ const bezelTop = 18;
1089
+ const bezelBottom = 18;
1090
+ const screenW = 393;
1091
+ const screenH = 851;
1092
+ const totalW = screenW + bezelSide * 2;
1093
+ const totalH = screenH + bezelTop + bezelBottom;
1094
+ const cornerRadius = 48;
1095
+ const outerRadius = cornerRadius + 8;
1096
+ const screenRadius = cornerRadius;
1097
+ return /* @__PURE__ */ jsxRuntime.jsxs(
1098
+ "svg",
1099
+ {
1100
+ viewBox: `0 0 ${totalW} ${totalH}`,
1101
+ width: totalW,
1102
+ height: totalH,
1103
+ xmlns: "http://www.w3.org/2000/svg",
1104
+ style,
1105
+ children: [
1106
+ /* @__PURE__ */ jsxRuntime.jsxs("defs", { children: [
1107
+ /* @__PURE__ */ jsxRuntime.jsxs("linearGradient", { id: "frame-gradient-pixel-9-pro", x1: "0", y1: "0", x2: "1", y2: "1", children: [
1108
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "0%", stopColor: frameColor }),
1109
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "50%", stopColor: colorScheme === "dark" ? "#262628" : "#ededef" }),
1110
+ /* @__PURE__ */ jsxRuntime.jsx("stop", { offset: "100%", stopColor: frameColor })
1111
+ ] }),
1112
+ /* @__PURE__ */ jsxRuntime.jsxs("mask", { id: "frame-screen-mask-pixel-9-pro", children: [
1113
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "0", y: "0", width: totalW, height: totalH, fill: "white" }),
1114
+ /* @__PURE__ */ jsxRuntime.jsx(
1115
+ "rect",
1116
+ {
1117
+ x: bezelSide,
1118
+ y: bezelTop,
1119
+ width: screenW,
1120
+ height: screenH,
1121
+ rx: screenRadius,
1122
+ ry: screenRadius,
1123
+ fill: "black"
1124
+ }
1125
+ )
1126
+ ] })
1127
+ ] }),
1128
+ /* @__PURE__ */ jsxRuntime.jsx(
1129
+ "rect",
1130
+ {
1131
+ x: "0",
1132
+ y: "0",
1133
+ width: totalW,
1134
+ height: totalH,
1135
+ rx: outerRadius,
1136
+ ry: outerRadius,
1137
+ fill: "url(#frame-gradient-pixel-9-pro)",
1138
+ stroke: frameBorder,
1139
+ strokeWidth: "1.5",
1140
+ mask: "url(#frame-screen-mask-pixel-9-pro)"
1141
+ }
1142
+ ),
1143
+ /* @__PURE__ */ jsxRuntime.jsx(
1144
+ "rect",
1145
+ {
1146
+ "data-zone": "screen-area",
1147
+ x: bezelSide,
1148
+ y: bezelTop,
1149
+ width: screenW,
1150
+ height: screenH,
1151
+ rx: screenRadius,
1152
+ ry: screenRadius,
1153
+ fill: "none"
1154
+ }
1155
+ ),
1156
+ /* @__PURE__ */ jsxRuntime.jsx(
1157
+ "circle",
1158
+ {
1159
+ "data-zone": "hardware-overlay",
1160
+ "data-zone-type": "punch-hole-camera",
1161
+ cx: bezelSide + screenW / 2,
1162
+ cy: bezelTop + 17,
1163
+ r: "5",
1164
+ fill: punchHoleColor
1165
+ }
1166
+ ),
1167
+ /* @__PURE__ */ jsxRuntime.jsx(
1168
+ "rect",
1169
+ {
1170
+ "data-zone": "safe-area-top-inset",
1171
+ x: bezelSide,
1172
+ y: bezelTop,
1173
+ width: screenW,
1174
+ height: "32",
1175
+ fill: "transparent"
1176
+ }
1177
+ ),
1178
+ /* @__PURE__ */ jsxRuntime.jsx(
1179
+ "rect",
1180
+ {
1181
+ "data-zone": "safe-area-bottom-inset",
1182
+ x: bezelSide,
1183
+ y: bezelTop + screenH - 24,
1184
+ width: screenW,
1185
+ height: "24",
1186
+ fill: "transparent"
1187
+ }
1188
+ ),
1189
+ /* @__PURE__ */ jsxRuntime.jsx(
1190
+ "rect",
1191
+ {
1192
+ "data-zone": "status-bar",
1193
+ "data-zone-style": "punch-hole",
1194
+ x: bezelSide,
1195
+ y: bezelTop,
1196
+ width: screenW,
1197
+ height: "32",
1198
+ fill: "transparent"
1199
+ }
1200
+ ),
1201
+ /* @__PURE__ */ jsxRuntime.jsx(
1202
+ "rect",
1203
+ {
1204
+ "data-zone": "home-indicator",
1205
+ "data-zone-type": "gesture-bar",
1206
+ x: bezelSide + (screenW - 90) / 2,
1207
+ y: bezelTop + screenH - 10,
1208
+ width: "90",
1209
+ height: "3",
1210
+ rx: "1.5",
1211
+ ry: "1.5",
1212
+ fill: "rgba(255,255,255,0.25)"
1213
+ }
1214
+ ),
1215
+ /* @__PURE__ */ jsxRuntime.jsx(
1216
+ "rect",
1217
+ {
1218
+ "data-button": "power",
1219
+ "data-side": "right",
1220
+ x: totalW - 2,
1221
+ y: "210",
1222
+ width: "3",
1223
+ height: "36",
1224
+ rx: "1.5",
1225
+ fill: buttonColor
1226
+ }
1227
+ ),
1228
+ /* @__PURE__ */ jsxRuntime.jsx(
1229
+ "rect",
1230
+ {
1231
+ "data-button": "volume-up",
1232
+ "data-side": "left",
1233
+ x: -1,
1234
+ y: "240",
1235
+ width: "3",
1236
+ height: "28",
1237
+ rx: "1.5",
1238
+ fill: buttonColor
1239
+ }
1240
+ ),
1241
+ /* @__PURE__ */ jsxRuntime.jsx(
1242
+ "rect",
1243
+ {
1244
+ "data-button": "volume-down",
1245
+ "data-side": "left",
1246
+ x: -1,
1247
+ y: "276",
1248
+ width: "3",
1249
+ height: "28",
1250
+ rx: "1.5",
1251
+ fill: buttonColor
1252
+ }
1253
+ ),
1254
+ /* @__PURE__ */ jsxRuntime.jsx(
1255
+ "rect",
1256
+ {
1257
+ x: (totalW - 24) / 2,
1258
+ y: totalH - 5,
1259
+ width: "24",
1260
+ height: "4",
1261
+ rx: "2",
1262
+ fill: colorScheme === "dark" ? "#111" : "#bbb"
1263
+ }
1264
+ )
1265
+ ]
1266
+ }
1267
+ );
1268
+ }
1269
+ var PIXEL_9_PRO_FRAME = {
1270
+ bezelTop: 18,
1271
+ bezelBottom: 18,
1272
+ bezelLeft: 12,
1273
+ bezelRight: 12,
1274
+ totalWidth: 417,
1275
+ totalHeight: 887,
1276
+ screenWidth: 393,
1277
+ screenHeight: 851,
1278
+ screenRadius: 48
1279
+ };
1280
+
1281
+ exports.GALAXY_S25_EDGE_FRAME = GALAXY_S25_EDGE_FRAME;
1282
+ exports.GALAXY_S25_EDGE_LAYOUT = GALAXY_S25_EDGE_LAYOUT;
1283
+ exports.GALAXY_S25_EDGE_META = GALAXY_S25_EDGE_META;
1284
+ exports.GALAXY_S25_FRAME = GALAXY_S25_FRAME;
1285
+ exports.GALAXY_S25_LAYOUT = GALAXY_S25_LAYOUT;
1286
+ exports.GALAXY_S25_META = GALAXY_S25_META;
1287
+ exports.GALAXY_S25_ULTRA_FRAME = GALAXY_S25_ULTRA_FRAME;
1288
+ exports.GALAXY_S25_ULTRA_LAYOUT = GALAXY_S25_ULTRA_LAYOUT;
1289
+ exports.GALAXY_S25_ULTRA_META = GALAXY_S25_ULTRA_META;
1290
+ exports.GalaxyS25EdgeSVG = GalaxyS25EdgeSVG;
1291
+ exports.GalaxyS25SVG = GalaxyS25SVG;
1292
+ exports.GalaxyS25UltraSVG = GalaxyS25UltraSVG;
1293
+ exports.PIXEL_9_PRO_FRAME = PIXEL_9_PRO_FRAME;
1294
+ exports.PIXEL_9_PRO_LAYOUT = PIXEL_9_PRO_LAYOUT;
1295
+ exports.PIXEL_9_PRO_META = PIXEL_9_PRO_META;
1296
+ exports.PIXEL_9_PRO_XL_FRAME = PIXEL_9_PRO_XL_FRAME;
1297
+ exports.PIXEL_9_PRO_XL_LAYOUT = PIXEL_9_PRO_XL_LAYOUT;
1298
+ exports.PIXEL_9_PRO_XL_META = PIXEL_9_PRO_XL_META;
1299
+ exports.Pixel9ProSVG = Pixel9ProSVG;
1300
+ exports.Pixel9ProXLSVG = Pixel9ProXLSVG;
1301
+ //# sourceMappingURL=chunk-BXBG5BY7.cjs.map
1302
+ //# sourceMappingURL=chunk-BXBG5BY7.cjs.map