@bace51/cocktailjs-react 1.0.8 → 1.0.9

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.cjs.js CHANGED
@@ -251,46 +251,58 @@ function AbsintheGlass({
251
251
  idBase = "AbsintheGlassGrad"
252
252
  }) {
253
253
  const height = Math.floor(size * 1.125);
254
- return /* @__PURE__ */ import_react2.default.createElement("svg", { width: size, height, viewBox: "0 0 64 90" }, /* @__PURE__ */ import_react2.default.createElement(
255
- Liquid,
256
- {
257
- d: `M20 35 L44 35 L42 49 Q32 52 22 49 Z
254
+ return /* @__PURE__ */ import_react2.default.createElement(
255
+ "svg",
256
+ {
257
+ width: size,
258
+ height,
259
+ viewBox: "0 0 64 90",
260
+ preserveAspectRatio: "xMidYMax slice"
261
+ },
262
+ /* @__PURE__ */ import_react2.default.createElement(
263
+ Liquid,
264
+ {
265
+ d: `M20 35 L44 35 L42 49 Q32 52 22 49 Z
258
266
  M26 50 Q32 50 38 50 L36 60 L28 60 Z`,
259
- transform: "scale(0.98)",
260
- idBase,
261
- opacity: 0.7,
262
- liquidFill
263
- }
264
- ), /* @__PURE__ */ import_react2.default.createElement(
265
- "path",
266
- {
267
- d: `M20 35 L44 35 L42 49 Q32 52 22 49 Z
267
+ transform: "scale(1)",
268
+ idBase,
269
+ opacity: 0.7,
270
+ liquidFill
271
+ }
272
+ ),
273
+ /* @__PURE__ */ import_react2.default.createElement(
274
+ "path",
275
+ {
276
+ d: `M20 35 L44 35 L42 49 Q32 52 22 49 Z
268
277
  M26 50 Q32 50 38 50 L36 60 L28 60 Z`,
269
- stroke: "currentColor",
270
- strokeWidth,
271
- fill: "none"
272
- }
273
- ), /* @__PURE__ */ import_react2.default.createElement(
274
- "rect",
275
- {
276
- x: 31,
277
- y: 60,
278
- width: 2,
279
- height: 16,
280
- fill: "black",
281
- stroke: "currentColor",
282
- strokeWidth
283
- }
284
- ), /* @__PURE__ */ import_react2.default.createElement(
285
- "path",
286
- {
287
- d: " M24 77 Q32 76 40 77 L40 77 L24 77 Z ",
288
- fill: "currentColor",
289
- stroke: "currentColor",
290
- strokeWidth,
291
- rx: strokeWidth
292
- }
293
- ));
278
+ stroke: "currentColor",
279
+ strokeWidth,
280
+ fill: "none"
281
+ }
282
+ ),
283
+ /* @__PURE__ */ import_react2.default.createElement(
284
+ "rect",
285
+ {
286
+ x: 31,
287
+ y: 60,
288
+ width: 2,
289
+ height: 16,
290
+ fill: "black",
291
+ stroke: "currentColor",
292
+ strokeWidth
293
+ }
294
+ ),
295
+ /* @__PURE__ */ import_react2.default.createElement(
296
+ "path",
297
+ {
298
+ d: " M24 77 Q32 76 40 77 L40 77 L24 77 Z ",
299
+ fill: "currentColor",
300
+ stroke: "currentColor",
301
+ strokeWidth,
302
+ rx: strokeWidth
303
+ }
304
+ )
305
+ );
294
306
  }
295
307
 
296
308
  // src/components/glasses/BrandySnifterGlass.jsx
@@ -300,7 +312,7 @@ function BrandySnifterGlass({
300
312
  strokeWidth = 1,
301
313
  idBase = "BrandySnifterGlassGrad"
302
314
  }) {
303
- return /* @__PURE__ */ import_react3.default.createElement("svg", { viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react3.default.createElement(
315
+ return /* @__PURE__ */ import_react3.default.createElement("svg", { viewBox: "0 0 64 64", preserveAspectRatio: "xMidYMax slice" }, /* @__PURE__ */ import_react3.default.createElement(
304
316
  Liquid,
305
317
  {
306
318
  d: `M22 28
@@ -308,7 +320,7 @@ function BrandySnifterGlass({
308
320
  L44 48
309
321
  Q32 52 20 48
310
322
  Z`,
311
- transform: "scale(0.98)",
323
+ transform: "scale(1)",
312
324
  idBase,
313
325
  opacity: 0.7,
314
326
  liquidFill
@@ -360,11 +372,11 @@ function CollinsGlass({
360
372
  strokeWidth = 0.5,
361
373
  idBase = "CollinsGlassGrad"
362
374
  }) {
363
- return /* @__PURE__ */ import_react4.default.createElement("svg", { viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react4.default.createElement(
375
+ return /* @__PURE__ */ import_react4.default.createElement("svg", { viewBox: "0 0 64 64", preserveAspectRatio: "xMidYMax slice" }, /* @__PURE__ */ import_react4.default.createElement(
364
376
  Liquid,
365
377
  {
366
378
  d: `M22 10 L42 10 L42 54 L22 54 Z`,
367
- transform: "scale(0.98)",
379
+ transform: "scale(1)",
368
380
  idBase,
369
381
  opacity: 0.7,
370
382
  liquidFill
@@ -420,40 +432,52 @@ function CopperMug({
420
432
  strokeWidth = 0.5,
421
433
  fill = "#B87333"
422
434
  }) {
423
- return /* @__PURE__ */ import_react5.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react5.default.createElement(
424
- "path",
425
- {
426
- d: "M47 23 C68 23 68 52 46.5 50",
427
- fill: "none",
428
- stroke: fill,
429
- strokeWidth: strokeWidth + 2
430
- }
431
- ), /* @__PURE__ */ import_react5.default.createElement(
432
- "path",
433
- {
434
- d: "\n M18 16 \n L46 16 \n C48 24 48 40 46 56 \n L18 56 \n C16 40 16 24 18 16 \n Z\n ",
435
- transform: "scale(0.98)",
436
- fill
437
- }
438
- ), /* @__PURE__ */ import_react5.default.createElement(
439
- "path",
440
- {
441
- d: "\n M18 16 \n L46 16 \n C48 24 48 40 46 56 \n L18 56 \n C16 40 16 24 18 16 \n Z\n ",
442
- fill: "none",
443
- stroke: fill,
444
- strokeWidth
445
- }
446
- ), /* @__PURE__ */ import_react5.default.createElement(
447
- "line",
448
- {
449
- x1: 18,
450
- y1: 16,
451
- x2: 46,
452
- y2: 16,
453
- stroke: fill,
454
- strokeWidth
455
- }
456
- ));
435
+ return /* @__PURE__ */ import_react5.default.createElement(
436
+ "svg",
437
+ {
438
+ width: size,
439
+ height: size,
440
+ viewBox: "0 0 64 64",
441
+ preserveAspectRatio: "xMidYMax slice"
442
+ },
443
+ /* @__PURE__ */ import_react5.default.createElement(
444
+ "path",
445
+ {
446
+ d: "M47 23 C68 23 68 52 46.5 50",
447
+ fill: "none",
448
+ stroke: fill,
449
+ strokeWidth: strokeWidth + 2
450
+ }
451
+ ),
452
+ /* @__PURE__ */ import_react5.default.createElement(
453
+ "path",
454
+ {
455
+ d: "\n M18 16 \n L46 16 \n C48 24 48 40 46 56 \n L18 56 \n C16 40 16 24 18 16 \n Z\n ",
456
+ transform: "scale(1)",
457
+ fill
458
+ }
459
+ ),
460
+ /* @__PURE__ */ import_react5.default.createElement(
461
+ "path",
462
+ {
463
+ d: "\n M18 16 \n L46 16 \n C48 24 48 40 46 56 \n L18 56 \n C16 40 16 24 18 16 \n Z\n ",
464
+ fill: "none",
465
+ stroke: fill,
466
+ strokeWidth
467
+ }
468
+ ),
469
+ /* @__PURE__ */ import_react5.default.createElement(
470
+ "line",
471
+ {
472
+ x1: 18,
473
+ y1: 16,
474
+ x2: 46,
475
+ y2: 16,
476
+ stroke: fill,
477
+ strokeWidth
478
+ }
479
+ )
480
+ );
457
481
  }
458
482
 
459
483
  // src/components/glasses/CordialGlass.jsx
@@ -480,11 +504,11 @@ function CordialGlass({
480
504
  strokeWidth = 0.5,
481
505
  idBase = "CordialGlassGrad"
482
506
  }) {
483
- return /* @__PURE__ */ import_react6.default.createElement("svg", { viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react6.default.createElement(
507
+ return /* @__PURE__ */ import_react6.default.createElement("svg", { viewBox: "0 0 64 64", preserveAspectRatio: "xMidYMax slice" }, /* @__PURE__ */ import_react6.default.createElement(
484
508
  Liquid,
485
509
  {
486
510
  d: `M30 16 L35 16 Q34 25 31 26 Q30 26 28 16 Z`,
487
- transform: "scale(0.98)",
511
+ transform: "scale(1)",
488
512
  idBase,
489
513
  opacity: 0.7,
490
514
  liquidFill
@@ -533,34 +557,46 @@ function CoupeGlass({
533
557
  strokeWidth = 1,
534
558
  idBase = "CoupeGlassGrad"
535
559
  }) {
536
- return /* @__PURE__ */ import_react7.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react7.default.createElement(
537
- Liquid,
538
- {
539
- d: `
560
+ return /* @__PURE__ */ import_react7.default.createElement(
561
+ "svg",
562
+ {
563
+ width: size,
564
+ height: size,
565
+ viewBox: "0 0 64 64",
566
+ preserveAspectRatio: "xMidYMax slice"
567
+ },
568
+ /* @__PURE__ */ import_react7.default.createElement(
569
+ Liquid,
570
+ {
571
+ d: `
540
572
  M12 32 Q32 36 52 32 L52 18 Q32 18 12 18 Z
541
573
  `,
542
- transform: "scale(0.98)",
543
- idBase,
544
- opacity: 0.7,
545
- liquidFill
546
- }
547
- ), /* @__PURE__ */ import_react7.default.createElement(
548
- "path",
549
- {
550
- d: "\n M12 32 Q32 36 52 32 L52 18 Q32 18 12 18 Z \n ",
551
- fill: "none",
552
- stroke: "currentColor",
553
- strokeWidth
554
- }
555
- ), /* @__PURE__ */ import_react7.default.createElement("path", { d: "M32 34 L32 60", stroke: "currentColor", strokeWidth }), /* @__PURE__ */ import_react7.default.createElement(
556
- "path",
557
- {
558
- d: "M24 60 Q32 59 40 60 L40 60 L24 60 Z",
559
- fill: "currentColor",
560
- stroke: "currentColor",
561
- strokeWidth
562
- }
563
- ));
574
+ transform: "scale(1)",
575
+ idBase,
576
+ opacity: 0.7,
577
+ liquidFill
578
+ }
579
+ ),
580
+ /* @__PURE__ */ import_react7.default.createElement(
581
+ "path",
582
+ {
583
+ d: "\n M12 32 Q32 36 52 32 L52 18 Q32 18 12 18 Z \n ",
584
+ fill: "none",
585
+ stroke: "currentColor",
586
+ strokeWidth
587
+ }
588
+ ),
589
+ /* @__PURE__ */ import_react7.default.createElement("path", { d: "M32 34 L32 60", stroke: "currentColor", strokeWidth }),
590
+ /* @__PURE__ */ import_react7.default.createElement(
591
+ "path",
592
+ {
593
+ d: "M24 60 Q32 59 40 60 L40 60 L24 60 Z",
594
+ fill: "currentColor",
595
+ stroke: "currentColor",
596
+ strokeWidth
597
+ }
598
+ )
599
+ );
564
600
  }
565
601
 
566
602
  // src/components/glasses/DemitasseGlass.jsx
@@ -571,41 +607,53 @@ function DemitasseGlass({
571
607
  strokeWidth = 0.5,
572
608
  idBase = "DemitasseGlassGrad"
573
609
  }) {
574
- return /* @__PURE__ */ import_react8.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react8.default.createElement(
575
- "path",
576
- {
577
- d: "M20 24 L24 45 L40 45 L44 24 Z",
578
- fill: "none",
579
- stroke: "currentColor",
580
- strokeLinejoin: "miter",
581
- strokeWidth
582
- }
583
- ), /* @__PURE__ */ import_react8.default.createElement(
584
- Liquid,
585
- {
586
- d: `M20 24 L24 45 L40 45 L44 24 Z`,
587
- transform: "scale(0.98)",
588
- idBase,
589
- opacity: 0.7,
590
- liquidFill
591
- }
592
- ), /* @__PURE__ */ import_react8.default.createElement(
593
- "path",
594
- {
595
- d: "M43 30 Q55 30 41 40",
596
- stroke: "currentColor",
597
- fill: "none",
598
- strokeWidth
599
- }
600
- ), /* @__PURE__ */ import_react8.default.createElement(
601
- "path",
602
- {
603
- d: "M24 45 Q32 45 40 45 L40 48 L24 48 Z",
604
- fill: "currentColor",
605
- stroke: "currentColor",
606
- strokeWidth
607
- }
608
- ));
610
+ return /* @__PURE__ */ import_react8.default.createElement(
611
+ "svg",
612
+ {
613
+ width: size,
614
+ height: size,
615
+ viewBox: "0 0 64 64",
616
+ preserveAspectRatio: "xMidYMax slice"
617
+ },
618
+ /* @__PURE__ */ import_react8.default.createElement(
619
+ "path",
620
+ {
621
+ d: "M20 24 L24 45 L40 45 L44 24 Z",
622
+ fill: "none",
623
+ stroke: "currentColor",
624
+ strokeLinejoin: "miter",
625
+ strokeWidth
626
+ }
627
+ ),
628
+ /* @__PURE__ */ import_react8.default.createElement(
629
+ Liquid,
630
+ {
631
+ d: `M20 24 L24 45 L40 45 L44 24 Z`,
632
+ transform: "scale(1)",
633
+ idBase,
634
+ opacity: 0.7,
635
+ liquidFill
636
+ }
637
+ ),
638
+ /* @__PURE__ */ import_react8.default.createElement(
639
+ "path",
640
+ {
641
+ d: "M43 30 Q55 30 41 40",
642
+ stroke: "currentColor",
643
+ fill: "none",
644
+ strokeWidth
645
+ }
646
+ ),
647
+ /* @__PURE__ */ import_react8.default.createElement(
648
+ "path",
649
+ {
650
+ d: "M24 45 Q32 45 40 45 L40 48 L24 48 Z",
651
+ fill: "currentColor",
652
+ stroke: "currentColor",
653
+ strokeWidth
654
+ }
655
+ )
656
+ );
609
657
  }
610
658
 
611
659
  // src/components/glasses/DoubleShotGlass.jsx
@@ -616,35 +664,46 @@ function DoubleShotGlass({
616
664
  strokeWidth = 0.5,
617
665
  idBase = "DoubleShotGlassGrad"
618
666
  }) {
619
- return /* @__PURE__ */ import_react9.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react9.default.createElement(
620
- "path",
621
- {
622
- d: "M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z",
623
- stroke: "currentColor",
624
- fill: "none",
625
- strokeWidth
626
- }
627
- ), /* @__PURE__ */ import_react9.default.createElement(
628
- Liquid,
629
- {
630
- d: `M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z`,
631
- transform: "scale(0.98)",
632
- idBase,
633
- opacity: 0.7,
634
- liquidFill
635
- }
636
- ), /* @__PURE__ */ import_react9.default.createElement(
637
- "rect",
638
- {
639
- x: 22.5,
640
- y: 58,
641
- width: 19,
642
- height: 3,
643
- fill: "none",
644
- stroke: "currentColor",
645
- strokeWidth
646
- }
647
- ));
667
+ return /* @__PURE__ */ import_react9.default.createElement(
668
+ "svg",
669
+ {
670
+ width: size,
671
+ height: size,
672
+ viewBox: "0 0 64 64",
673
+ preserveAspectRatio: "xMidYMax slice"
674
+ },
675
+ /* @__PURE__ */ import_react9.default.createElement(
676
+ "path",
677
+ {
678
+ d: "M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z",
679
+ stroke: "currentColor",
680
+ fill: "none",
681
+ strokeWidth
682
+ }
683
+ ),
684
+ /* @__PURE__ */ import_react9.default.createElement(
685
+ Liquid,
686
+ {
687
+ d: `M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z`,
688
+ transform: "scale(1)",
689
+ idBase,
690
+ opacity: 0.7,
691
+ liquidFill
692
+ }
693
+ ),
694
+ /* @__PURE__ */ import_react9.default.createElement(
695
+ "rect",
696
+ {
697
+ x: 22.5,
698
+ y: 58,
699
+ width: 19,
700
+ height: 3,
701
+ fill: "none",
702
+ stroke: "currentColor",
703
+ strokeWidth
704
+ }
705
+ )
706
+ );
648
707
  }
649
708
 
650
709
  // src/components/glasses/FizzGlass.jsx
@@ -655,45 +714,58 @@ function FizzGlass({
655
714
  strokeWidth = 0.5,
656
715
  idBase = "FizzGlassGrad"
657
716
  }) {
658
- return /* @__PURE__ */ import_react10.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react10.default.createElement("path", { d: "M22 10 L42 10", stroke: "currentColor", strokeWidth }), /* @__PURE__ */ import_react10.default.createElement(
659
- Liquid,
660
- {
661
- d: `
717
+ return /* @__PURE__ */ import_react10.default.createElement(
718
+ "svg",
719
+ {
720
+ width: size,
721
+ height: size,
722
+ viewBox: "0 0 64 64",
723
+ preserveAspectRatio: "xMidYMax slice"
724
+ },
725
+ /* @__PURE__ */ import_react10.default.createElement("path", { d: "M22 10 L42 10", stroke: "currentColor", strokeWidth }),
726
+ /* @__PURE__ */ import_react10.default.createElement(
727
+ Liquid,
728
+ {
729
+ d: `
662
730
  M22 10 L24 23 L40 23 L42 10 Z
663
731
  `,
664
- transform: "scale(0.98)",
665
- idBase,
666
- opacity: 0.7,
667
- liquidFill
668
- }
669
- ), /* @__PURE__ */ import_react10.default.createElement(
670
- "path",
671
- {
672
- d: "\n M22 10 L24 23 L40 23 L42 10 Z \n ",
673
- fill: "none",
674
- stroke: "currentColor",
675
- strokeWidth
676
- }
677
- ), /* @__PURE__ */ import_react10.default.createElement(
678
- "rect",
679
- {
680
- x: 32,
681
- y: 23,
682
- width: 1,
683
- height: 10,
684
- fill: "currentColor",
685
- stroke: "currentColor",
686
- strokeWidth
687
- }
688
- ), /* @__PURE__ */ import_react10.default.createElement(
689
- "path",
690
- {
691
- d: "M26 33 Q32 32 38 33 L38 33 L26 33 Z",
692
- fill: "currentColor",
693
- stroke: "currentColor",
694
- strokeWidth
695
- }
696
- ));
732
+ transform: "scale(1)",
733
+ idBase,
734
+ opacity: 0.7,
735
+ liquidFill
736
+ }
737
+ ),
738
+ /* @__PURE__ */ import_react10.default.createElement(
739
+ "path",
740
+ {
741
+ d: "M22 10 L24 23 L40 23 L42 10 Z",
742
+ fill: "none",
743
+ stroke: "currentColor",
744
+ strokeWidth
745
+ }
746
+ ),
747
+ /* @__PURE__ */ import_react10.default.createElement(
748
+ "rect",
749
+ {
750
+ x: 32,
751
+ y: 23,
752
+ width: 1,
753
+ height: 10,
754
+ fill: "currentColor",
755
+ stroke: "currentColor",
756
+ strokeWidth
757
+ }
758
+ ),
759
+ /* @__PURE__ */ import_react10.default.createElement(
760
+ "path",
761
+ {
762
+ d: "M26 33 Q32 32 38 33 L38 33 L26 33 Z",
763
+ fill: "currentColor",
764
+ stroke: "currentColor",
765
+ strokeWidth
766
+ }
767
+ )
768
+ );
697
769
  }
698
770
 
699
771
  // src/components/glasses/FluteGlass.jsx
@@ -704,49 +776,61 @@ function FluteGlass({
704
776
  strokeWidth = 0.5,
705
777
  idBase = "FluteGlassGrad"
706
778
  }) {
707
- return /* @__PURE__ */ import_react11.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react11.default.createElement(
708
- Liquid,
709
- {
710
- d: `
779
+ return /* @__PURE__ */ import_react11.default.createElement(
780
+ "svg",
781
+ {
782
+ width: size,
783
+ height: size,
784
+ viewBox: "0 0 64 64",
785
+ preserveAspectRatio: "xMidYMax slice"
786
+ },
787
+ /* @__PURE__ */ import_react11.default.createElement(
788
+ Liquid,
789
+ {
790
+ d: `
711
791
  M30 12
712
792
  L34 12
713
793
  L36 36
714
794
  Q32 38 28 36
715
795
  Z
716
796
  `,
717
- transform: "scale(0.98)",
718
- idBase,
719
- opacity: 0.7,
720
- liquidFill
721
- }
722
- ), /* @__PURE__ */ import_react11.default.createElement(
723
- "path",
724
- {
725
- d: "\n M30 12 \n L34 12 \n L36 36 \n Q32 38 28 36 \n Z\n ",
726
- fill: "none",
727
- stroke: "currentColor",
728
- strokeWidth
729
- }
730
- ), /* @__PURE__ */ import_react11.default.createElement(
731
- "rect",
732
- {
733
- x: 32,
734
- y: 37,
735
- width: strokeWidth,
736
- height: 16,
737
- fill: "currentColor",
738
- stroke: "currentColor",
739
- strokeWidth
740
- }
741
- ), /* @__PURE__ */ import_react11.default.createElement(
742
- "path",
743
- {
744
- d: "M26 53 Q32 52 38 53 L38 53 L26 53 Z",
745
- fill: "currentColor",
746
- stroke: "currentColor",
747
- strokeWidth
748
- }
749
- ));
797
+ transform: "scale(1)",
798
+ idBase,
799
+ opacity: 0.7,
800
+ liquidFill
801
+ }
802
+ ),
803
+ /* @__PURE__ */ import_react11.default.createElement(
804
+ "path",
805
+ {
806
+ d: "\n M30 12 \n L34 12 \n L36 36 \n Q32 38 28 36 \n Z\n ",
807
+ fill: "none",
808
+ stroke: "currentColor",
809
+ strokeWidth
810
+ }
811
+ ),
812
+ /* @__PURE__ */ import_react11.default.createElement(
813
+ "rect",
814
+ {
815
+ x: 32,
816
+ y: 37,
817
+ width: strokeWidth,
818
+ height: 16,
819
+ fill: "currentColor",
820
+ stroke: "currentColor",
821
+ strokeWidth
822
+ }
823
+ ),
824
+ /* @__PURE__ */ import_react11.default.createElement(
825
+ "path",
826
+ {
827
+ d: "M26 53 Q32 52 38 53 L38 53 L26 53 Z",
828
+ fill: "currentColor",
829
+ stroke: "currentColor",
830
+ strokeWidth
831
+ }
832
+ )
833
+ );
750
834
  }
751
835
 
752
836
  // src/components/glasses/GobletGlass.jsx
@@ -758,53 +842,66 @@ function GobletGlass({
758
842
  idBase = "GobletGlassGrad"
759
843
  }) {
760
844
  const height = Math.round(size * 90 / 80);
761
- return /* @__PURE__ */ import_react12.default.createElement("svg", { width: size, height, viewBox: "0 0 64 90" }, /* @__PURE__ */ import_react12.default.createElement(
762
- "rect",
763
- {
764
- x: 30.5,
765
- y: 69,
766
- width: 3,
767
- height: 8,
768
- fill: "currentColor",
769
- stroke: "currentColor",
770
- strokeWidth
771
- }
772
- ), /* @__PURE__ */ import_react12.default.createElement(
773
- Liquid,
774
- {
775
- d: ` M19 28 L46 28 Q52 58 32 70 Q12 58 16 28 Z `,
776
- transform: "scale(0.98)",
777
- idBase,
778
- opacity: 0.7,
779
- liquidFill
780
- }
781
- ), /* @__PURE__ */ import_react12.default.createElement(
782
- "path",
783
- {
784
- d: "\n M16 28 \n L48 28 \n Q52 58 32 70 \n Q12 58 16 28 \n Z\n ",
785
- fill: "none",
786
- stroke: "currentColor",
787
- strokeWidth
788
- }
789
- ), /* @__PURE__ */ import_react12.default.createElement(
790
- "line",
791
- {
792
- x1: 16,
793
- y1: 28,
794
- x2: 48,
795
- y2: 28,
796
- stroke: "currentColor",
797
- strokeWidth
798
- }
799
- ), /* @__PURE__ */ import_react12.default.createElement(
800
- "path",
801
- {
802
- d: " M24 77 Q32 76 40 77 L40 77 L24 77 Z ",
803
- fill: "currentColor",
804
- stroke: "currentColor",
805
- strokeWidth
806
- }
807
- ));
845
+ return /* @__PURE__ */ import_react12.default.createElement(
846
+ "svg",
847
+ {
848
+ width: size,
849
+ height,
850
+ viewBox: "0 0 64 90",
851
+ preserveAspectRatio: "xMidYMax slice"
852
+ },
853
+ /* @__PURE__ */ import_react12.default.createElement(
854
+ "rect",
855
+ {
856
+ x: 30.5,
857
+ y: 69,
858
+ width: 3,
859
+ height: 8,
860
+ fill: "currentColor",
861
+ stroke: "currentColor",
862
+ strokeWidth
863
+ }
864
+ ),
865
+ /* @__PURE__ */ import_react12.default.createElement(
866
+ Liquid,
867
+ {
868
+ d: ` M19 28 L46 28 Q52 58 32 70 Q12 58 16 28 Z `,
869
+ transform: "scale(1)",
870
+ idBase,
871
+ opacity: 0.7,
872
+ liquidFill
873
+ }
874
+ ),
875
+ /* @__PURE__ */ import_react12.default.createElement(
876
+ "path",
877
+ {
878
+ d: "\n M16 28 \n L48 28 \n Q52 58 32 70 \n Q12 58 16 28 \n Z\n ",
879
+ fill: "none",
880
+ stroke: "currentColor",
881
+ strokeWidth
882
+ }
883
+ ),
884
+ /* @__PURE__ */ import_react12.default.createElement(
885
+ "line",
886
+ {
887
+ x1: 16,
888
+ y1: 28,
889
+ x2: 48,
890
+ y2: 28,
891
+ stroke: "currentColor",
892
+ strokeWidth
893
+ }
894
+ ),
895
+ /* @__PURE__ */ import_react12.default.createElement(
896
+ "path",
897
+ {
898
+ d: " M24 77 Q32 76 40 77 L40 77 L24 77 Z ",
899
+ fill: "currentColor",
900
+ stroke: "currentColor",
901
+ strokeWidth
902
+ }
903
+ )
904
+ );
808
905
  }
809
906
 
810
907
  // src/components/glasses/HighballGlass.jsx
@@ -815,38 +912,49 @@ function HighballGlass({
815
912
  strokeWidth = 0.5,
816
913
  idBase = "HighballGlassGrad"
817
914
  }) {
818
- return /* @__PURE__ */ import_react13.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react13.default.createElement(
819
- Liquid,
820
- {
821
- d: `M18 10 L46 10 L46 60 L18 60 Z`,
822
- transform: "scale(0.98)",
823
- idBase,
824
- opacity: 0.7,
825
- liquidFill
826
- }
827
- ), /* @__PURE__ */ import_react13.default.createElement(
828
- "rect",
829
- {
830
- x: 18,
831
- y: 10,
832
- width: 28,
833
- height: 50,
834
- stroke: "currentColor",
835
- strokeWidth,
836
- fill: "none"
837
- }
838
- ), /* @__PURE__ */ import_react13.default.createElement(
839
- "rect",
840
- {
841
- x: 18,
842
- y: 60,
843
- width: 28,
844
- height: 2,
845
- fill: "currentColor",
846
- stroke: "currentColor",
847
- strokeWidth
848
- }
849
- ));
915
+ return /* @__PURE__ */ import_react13.default.createElement(
916
+ "svg",
917
+ {
918
+ width: size,
919
+ height: size,
920
+ viewBox: "0 0 64 64",
921
+ preserveAspectRatio: "xMidYMax slice"
922
+ },
923
+ /* @__PURE__ */ import_react13.default.createElement(
924
+ Liquid,
925
+ {
926
+ d: `M18 10 L46 10 L46 60 L18 60 Z`,
927
+ transform: "scale(1)",
928
+ idBase,
929
+ opacity: 0.7,
930
+ liquidFill
931
+ }
932
+ ),
933
+ /* @__PURE__ */ import_react13.default.createElement(
934
+ "rect",
935
+ {
936
+ x: 18,
937
+ y: 10,
938
+ width: 28,
939
+ height: 50,
940
+ stroke: "currentColor",
941
+ strokeWidth,
942
+ fill: "none"
943
+ }
944
+ ),
945
+ /* @__PURE__ */ import_react13.default.createElement(
946
+ "rect",
947
+ {
948
+ x: 18,
949
+ y: 60,
950
+ width: 28,
951
+ height: 2,
952
+ fill: "currentColor",
953
+ stroke: "currentColor",
954
+ strokeWidth
955
+ }
956
+ )
957
+ );
850
958
  }
851
959
 
852
960
  // src/components/glasses/HurricaneGlass.jsx
@@ -858,43 +966,55 @@ function HurricaneGlass({
858
966
  strokeWidth = 0.5,
859
967
  idBase = "HurricaneGlassGrad"
860
968
  }) {
861
- return /* @__PURE__ */ import_react14.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react14.default.createElement(
862
- Liquid,
863
- {
864
- d: `M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z`,
865
- transform: "scale(0.98)",
866
- idBase,
867
- opacity: 0.7,
868
- liquidFill
869
- }
870
- ), /* @__PURE__ */ import_react14.default.createElement(
871
- "path",
872
- {
873
- d: "M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z",
874
- stroke: "currentColor",
875
- fill: "none",
876
- strokeWidth
877
- }
878
- ), /* @__PURE__ */ import_react14.default.createElement(
879
- "rect",
880
- {
881
- x: 30.5,
882
- y: 47,
883
- width: 3,
884
- height: 10,
885
- fill: "currentColor",
886
- stroke: "currentColor",
887
- strokeWidth
888
- }
889
- ), /* @__PURE__ */ import_react14.default.createElement(
890
- "path",
891
- {
892
- d: "M26 57 Q32 56 38 57 L38 57 L26 57 Z",
893
- fill: "currentColor",
894
- stroke: "currentColor",
895
- strokeWidth
896
- }
897
- ));
969
+ return /* @__PURE__ */ import_react14.default.createElement(
970
+ "svg",
971
+ {
972
+ width: size,
973
+ height: size,
974
+ viewBox: "0 0 64 64",
975
+ preserveAspectRatio: "xMidYMax slice"
976
+ },
977
+ /* @__PURE__ */ import_react14.default.createElement(
978
+ Liquid,
979
+ {
980
+ d: `M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z`,
981
+ transform: "scale(1)",
982
+ idBase,
983
+ opacity: 0.7,
984
+ liquidFill
985
+ }
986
+ ),
987
+ /* @__PURE__ */ import_react14.default.createElement(
988
+ "path",
989
+ {
990
+ d: "M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z",
991
+ stroke: "currentColor",
992
+ fill: "none",
993
+ strokeWidth
994
+ }
995
+ ),
996
+ /* @__PURE__ */ import_react14.default.createElement(
997
+ "rect",
998
+ {
999
+ x: 30.5,
1000
+ y: 47,
1001
+ width: 3,
1002
+ height: 10,
1003
+ fill: "currentColor",
1004
+ stroke: "currentColor",
1005
+ strokeWidth
1006
+ }
1007
+ ),
1008
+ /* @__PURE__ */ import_react14.default.createElement(
1009
+ "path",
1010
+ {
1011
+ d: "M26 57 Q32 56 38 57 L38 57 L26 57 Z",
1012
+ fill: "currentColor",
1013
+ stroke: "currentColor",
1014
+ strokeWidth
1015
+ }
1016
+ )
1017
+ );
898
1018
  }
899
1019
 
900
1020
  // src/components/glasses/IrishCoffeeGlass.jsx
@@ -905,18 +1025,27 @@ function IrishCoffeeGlass({
905
1025
  strokeWidth = 2,
906
1026
  idBase = "IrishCoffeeGlassGrad"
907
1027
  }) {
908
- return /* @__PURE__ */ import_react15.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react15.default.createElement(
909
- "path",
910
- {
911
- d: " M42 18 Q60 20 44 30 ",
912
- stroke: "currentColor",
913
- strokeWidth,
914
- fill: "none"
915
- }
916
- ), /* @__PURE__ */ import_react15.default.createElement(
917
- Liquid,
918
- {
919
- d: `
1028
+ return /* @__PURE__ */ import_react15.default.createElement(
1029
+ "svg",
1030
+ {
1031
+ width: size,
1032
+ height: size,
1033
+ viewBox: "0 0 64 64",
1034
+ preserveAspectRatio: "xMidYMax slice"
1035
+ },
1036
+ /* @__PURE__ */ import_react15.default.createElement(
1037
+ "path",
1038
+ {
1039
+ d: " M42 18 Q60 20 44 30 ",
1040
+ stroke: "currentColor",
1041
+ strokeWidth,
1042
+ fill: "none"
1043
+ }
1044
+ ),
1045
+ /* @__PURE__ */ import_react15.default.createElement(
1046
+ Liquid,
1047
+ {
1048
+ d: `
920
1049
  M22 16
921
1050
  L42 16
922
1051
  L44 30
@@ -924,39 +1053,43 @@ function IrishCoffeeGlass({
924
1053
  Q20 38 20 30
925
1054
  Z
926
1055
  `,
927
- transform: "scale(0.98)",
928
- idBase,
929
- opacity: 0.7,
930
- liquidFill
931
- }
932
- ), /* @__PURE__ */ import_react15.default.createElement(
933
- "path",
934
- {
935
- d: "\n M22 16\n L42 16\n L44 30\n Q44 38 32 42\n Q20 38 20 30\n Z\n ",
936
- stroke: "currentColor",
937
- strokeWidth: strokeWidth - 1,
938
- fill: "none"
939
- }
940
- ), /* @__PURE__ */ import_react15.default.createElement(
941
- "rect",
942
- {
943
- x: 31,
944
- y: 42,
945
- width: 2,
946
- height: 2,
947
- fill: "currentColor",
948
- stroke: "currentColor",
949
- strokeWidth
950
- }
951
- ), /* @__PURE__ */ import_react15.default.createElement(
952
- "path",
953
- {
954
- d: " M24 44 Q32 43 40 44 L40 44 L24 44 Z ",
955
- fill: "currentColor",
956
- stroke: "currentColor",
957
- strokeWidth
958
- }
959
- ));
1056
+ transform: "scale(1)",
1057
+ idBase,
1058
+ opacity: 0.7,
1059
+ liquidFill
1060
+ }
1061
+ ),
1062
+ /* @__PURE__ */ import_react15.default.createElement(
1063
+ "path",
1064
+ {
1065
+ d: "\n M22 16\n L42 16\n L44 30\n Q44 38 32 42\n Q20 38 20 30\n Z\n ",
1066
+ stroke: "currentColor",
1067
+ strokeWidth: strokeWidth - 1,
1068
+ fill: "none"
1069
+ }
1070
+ ),
1071
+ /* @__PURE__ */ import_react15.default.createElement(
1072
+ "rect",
1073
+ {
1074
+ x: 31,
1075
+ y: 42,
1076
+ width: 2,
1077
+ height: 2,
1078
+ fill: "currentColor",
1079
+ stroke: "currentColor",
1080
+ strokeWidth
1081
+ }
1082
+ ),
1083
+ /* @__PURE__ */ import_react15.default.createElement(
1084
+ "path",
1085
+ {
1086
+ d: " M24 44 Q32 43 40 44 L40 44 L24 44 Z ",
1087
+ fill: "currentColor",
1088
+ stroke: "currentColor",
1089
+ strokeWidth
1090
+ }
1091
+ )
1092
+ );
960
1093
  }
961
1094
 
962
1095
  // src/components/glasses/JulepCup.jsx
@@ -966,95 +1099,111 @@ function JulepCup({
966
1099
  size = 80,
967
1100
  strokeWidth = 0.5
968
1101
  }) {
969
- return /* @__PURE__ */ import_react16.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react16.default.createElement(
970
- "rect",
971
- {
972
- x: 17,
973
- y: 21,
974
- width: 30,
975
- height: 1,
976
- rx: 1,
977
- fill: "none",
978
- stroke: fill,
979
- strokeWidth
980
- }
981
- ), /* @__PURE__ */ import_react16.default.createElement(
982
- "rect",
983
- {
984
- x: 17,
985
- y: 21,
986
- width: 30,
987
- height: 1,
988
- rx: 1,
989
- transform: "scale(0.98)",
990
- opacity: 0.7,
991
- fill,
992
- strokeWidth: 0
993
- }
994
- ), /* @__PURE__ */ import_react16.default.createElement(
995
- "path",
996
- {
997
- d: "\n M18 22\n L46 22\n L42 54\n L22 54\n Z\n ",
998
- fill: "none",
999
- stroke: fill,
1000
- strokeWidth
1001
- }
1002
- ), /* @__PURE__ */ import_react16.default.createElement(
1003
- "path",
1004
- {
1005
- d: "\n M18 22\n L46 22\n L42 54\n L22 54\n Z\n ",
1006
- transform: "scale(0.98)",
1007
- fill
1008
- }
1009
- ), /* @__PURE__ */ import_react16.default.createElement(
1010
- "rect",
1011
- {
1012
- x: 20,
1013
- y: 53,
1014
- width: 24,
1015
- height: 1,
1016
- rx: strokeWidth,
1017
- fill: "none",
1018
- stroke: fill,
1019
- strokeWidth
1020
- }
1021
- ), /* @__PURE__ */ import_react16.default.createElement(
1022
- "rect",
1023
- {
1024
- x: 20,
1025
- y: 53,
1026
- width: 24,
1027
- height: 1,
1028
- rx: strokeWidth,
1029
- transform: "scale(0.98)",
1030
- fill,
1031
- strokeWidth: 0
1032
- }
1033
- ), /* @__PURE__ */ import_react16.default.createElement(
1034
- "rect",
1035
- {
1036
- x: 18.8,
1037
- y: 54,
1038
- width: 26,
1039
- height: 1,
1040
- rx: strokeWidth,
1041
- fill: "none",
1042
- stroke: fill,
1043
- strokeWidth
1044
- }
1045
- ), /* @__PURE__ */ import_react16.default.createElement(
1046
- "rect",
1047
- {
1048
- x: 18.8,
1049
- y: 54,
1050
- width: 26,
1051
- height: 1,
1052
- rx: strokeWidth,
1053
- transform: "scale(0.98)",
1054
- fill,
1055
- strokeWidth: 0
1056
- }
1057
- ));
1102
+ return /* @__PURE__ */ import_react16.default.createElement(
1103
+ "svg",
1104
+ {
1105
+ width: size,
1106
+ height: size,
1107
+ viewBox: "0 0 64 64",
1108
+ preserveAspectRatio: "xMidYMax slice"
1109
+ },
1110
+ /* @__PURE__ */ import_react16.default.createElement(
1111
+ "rect",
1112
+ {
1113
+ x: 17,
1114
+ y: 21,
1115
+ width: 30,
1116
+ height: 1,
1117
+ rx: 1,
1118
+ fill: "none",
1119
+ stroke: fill,
1120
+ strokeWidth
1121
+ }
1122
+ ),
1123
+ /* @__PURE__ */ import_react16.default.createElement(
1124
+ "rect",
1125
+ {
1126
+ x: 17,
1127
+ y: 21,
1128
+ width: 30,
1129
+ height: 1,
1130
+ rx: 1,
1131
+ transform: "scale(1)",
1132
+ opacity: 0.7,
1133
+ fill,
1134
+ strokeWidth: 0
1135
+ }
1136
+ ),
1137
+ /* @__PURE__ */ import_react16.default.createElement(
1138
+ "path",
1139
+ {
1140
+ d: "\n M18 22\n L46 22\n L42 54\n L22 54\n Z\n ",
1141
+ fill: "none",
1142
+ stroke: fill,
1143
+ strokeWidth
1144
+ }
1145
+ ),
1146
+ /* @__PURE__ */ import_react16.default.createElement(
1147
+ "path",
1148
+ {
1149
+ d: "\n M18 22\n L46 22\n L42 54\n L22 54\n Z\n ",
1150
+ transform: "scale(1)",
1151
+ fill
1152
+ }
1153
+ ),
1154
+ /* @__PURE__ */ import_react16.default.createElement(
1155
+ "rect",
1156
+ {
1157
+ x: 20,
1158
+ y: 53,
1159
+ width: 24,
1160
+ height: 1,
1161
+ rx: strokeWidth,
1162
+ fill: "none",
1163
+ stroke: fill,
1164
+ strokeWidth
1165
+ }
1166
+ ),
1167
+ /* @__PURE__ */ import_react16.default.createElement(
1168
+ "rect",
1169
+ {
1170
+ x: 20,
1171
+ y: 53,
1172
+ width: 24,
1173
+ height: 1,
1174
+ rx: strokeWidth,
1175
+ transform: "scale(1)",
1176
+ fill,
1177
+ strokeWidth: 0
1178
+ }
1179
+ ),
1180
+ /* @__PURE__ */ import_react16.default.createElement(
1181
+ "rect",
1182
+ {
1183
+ x: 18.8,
1184
+ y: 54,
1185
+ width: 26,
1186
+ height: 1,
1187
+ rx: strokeWidth,
1188
+ fill: "none",
1189
+ stroke: fill,
1190
+ strokeWidth
1191
+ }
1192
+ ),
1193
+ /* @__PURE__ */ import_react16.default.createElement(
1194
+ "rect",
1195
+ {
1196
+ x: 18.8,
1197
+ y: 54,
1198
+ width: 26,
1199
+ height: 1,
1200
+ rx: strokeWidth,
1201
+ transform: "scale(1)",
1202
+ fill,
1203
+ strokeWidth: 0
1204
+ }
1205
+ )
1206
+ );
1058
1207
  }
1059
1208
 
1060
1209
  // src/components/glasses/MargaritaGlass.jsx
@@ -1068,43 +1217,55 @@ function MargaritaGlass({
1068
1217
  idBase = "MargaritaGlassGrad"
1069
1218
  }) {
1070
1219
  const stops = liquidFill;
1071
- return /* @__PURE__ */ import_react17.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react17.default.createElement(
1072
- Liquid,
1073
- {
1074
- d: `M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,
1075
- transform: "scale(0.98)",
1076
- idBase,
1077
- opacity: 0.7,
1078
- liquidFill
1079
- }
1080
- ), /* @__PURE__ */ import_react17.default.createElement(
1081
- "path",
1082
- {
1083
- d: `M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z
1220
+ return /* @__PURE__ */ import_react17.default.createElement(
1221
+ "svg",
1222
+ {
1223
+ width: size,
1224
+ height: size,
1225
+ viewBox: "0 0 64 64",
1226
+ preserveAspectRatio: "xMidYMax slice"
1227
+ },
1228
+ /* @__PURE__ */ import_react17.default.createElement(
1229
+ Liquid,
1230
+ {
1231
+ d: `M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,
1232
+ transform: "scale(1)",
1233
+ idBase,
1234
+ opacity: 0.7,
1235
+ liquidFill
1236
+ }
1237
+ ),
1238
+ /* @__PURE__ */ import_react17.default.createElement(
1239
+ "path",
1240
+ {
1241
+ d: `M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z
1084
1242
  M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,
1085
- fill: "none",
1086
- stroke: "currentColor",
1087
- strokeWidth
1088
- }
1089
- ), /* @__PURE__ */ import_react17.default.createElement(
1090
- "rect",
1091
- {
1092
- x: 31.5,
1093
- y: 36,
1094
- width: 1,
1095
- height: 10,
1096
- fill: "currentColor",
1097
- stroke: "currentColor",
1098
- strokeWidth
1099
- }
1100
- ), /* @__PURE__ */ import_react17.default.createElement(
1101
- "path",
1102
- {
1103
- d: " M24 46 Q32 45 40 46 L40 47 L24 47 Z ",
1104
- fill: "currentColor",
1105
- strokeWidth: 0
1106
- }
1107
- ));
1243
+ fill: "none",
1244
+ stroke: "currentColor",
1245
+ strokeWidth
1246
+ }
1247
+ ),
1248
+ /* @__PURE__ */ import_react17.default.createElement(
1249
+ "rect",
1250
+ {
1251
+ x: 31.5,
1252
+ y: 36,
1253
+ width: 1,
1254
+ height: 10,
1255
+ fill: "currentColor",
1256
+ stroke: "currentColor",
1257
+ strokeWidth
1258
+ }
1259
+ ),
1260
+ /* @__PURE__ */ import_react17.default.createElement(
1261
+ "path",
1262
+ {
1263
+ d: " M24 46 Q32 45 40 46 L40 47 L24 47 Z ",
1264
+ fill: "currentColor",
1265
+ strokeWidth: 0
1266
+ }
1267
+ )
1268
+ );
1108
1269
  }
1109
1270
 
1110
1271
  // src/components/glasses/MartiniGlass.jsx
@@ -1116,24 +1277,36 @@ function MartiniGlass({
1116
1277
  strokeWidth = 1,
1117
1278
  idBase = "MartiniGlassGrad"
1118
1279
  }) {
1119
- return /* @__PURE__ */ import_react18.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react18.default.createElement(
1120
- Liquid,
1121
- {
1122
- d: `M10 10 L54 10 L32 40 Z`,
1123
- transform: "scale(0.98)",
1124
- idBase,
1125
- opacity: 0.7,
1126
- liquidFill
1127
- }
1128
- ), /* @__PURE__ */ import_react18.default.createElement(
1129
- "path",
1130
- {
1131
- d: "M10 10 L54 10 L32 40 Z",
1132
- stroke: "currentColor",
1133
- fill: "none",
1134
- strokeWidth
1135
- }
1136
- ), /* @__PURE__ */ import_react18.default.createElement("path", { d: "M32 40 L32 58", stroke: "currentColor", strokeWidth }), /* @__PURE__ */ import_react18.default.createElement("path", { d: " M24 58 Q32 57 40 58 L40 59 L24 59 Z ", fill: "currentColor" }));
1280
+ return /* @__PURE__ */ import_react18.default.createElement(
1281
+ "svg",
1282
+ {
1283
+ width: size,
1284
+ height: size,
1285
+ viewBox: "0 0 64 64",
1286
+ preserveAspectRatio: "xMidYMax slice"
1287
+ },
1288
+ /* @__PURE__ */ import_react18.default.createElement(
1289
+ Liquid,
1290
+ {
1291
+ d: `M10 10 L54 10 L32 40 Z`,
1292
+ transform: "scale(1)",
1293
+ idBase,
1294
+ opacity: 0.7,
1295
+ liquidFill
1296
+ }
1297
+ ),
1298
+ /* @__PURE__ */ import_react18.default.createElement(
1299
+ "path",
1300
+ {
1301
+ d: "M10 10 L54 10 L32 40 Z",
1302
+ stroke: "currentColor",
1303
+ fill: "none",
1304
+ strokeWidth
1305
+ }
1306
+ ),
1307
+ /* @__PURE__ */ import_react18.default.createElement("path", { d: "M32 40 L32 58", stroke: "currentColor", strokeWidth }),
1308
+ /* @__PURE__ */ import_react18.default.createElement("path", { d: " M24 58 Q32 57 40 58 L40 59 L24 59 Z ", fill: "currentColor" })
1309
+ );
1137
1310
  }
1138
1311
 
1139
1312
  // src/components/glasses/NickAndNoraGlass.jsx
@@ -1145,43 +1318,55 @@ function NickAndNoraGlass({
1145
1318
  strokeWidth = 0.5,
1146
1319
  idBase = "NickAndNoraGlassGrad"
1147
1320
  }) {
1148
- return /* @__PURE__ */ import_react19.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react19.default.createElement(
1149
- Liquid,
1150
- {
1151
- d: `M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z`,
1152
- transform: "scale(0.98)",
1153
- idBase,
1154
- opacity: 0.7,
1155
- liquidFill
1156
- }
1157
- ), /* @__PURE__ */ import_react19.default.createElement(
1158
- "path",
1159
- {
1160
- d: "M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",
1161
- fill: "none",
1162
- stroke: "currentColor",
1163
- strokeWidth
1164
- }
1165
- ), /* @__PURE__ */ import_react19.default.createElement(
1166
- "rect",
1167
- {
1168
- x: 32,
1169
- y: 39,
1170
- width: 1,
1171
- height: 16,
1172
- fill: "currentColor",
1173
- stroke: "currentColor",
1174
- strokeWidth
1175
- }
1176
- ), /* @__PURE__ */ import_react19.default.createElement(
1177
- "path",
1178
- {
1179
- d: " M24 55 Q32 54 40 55 L40 55 L24 55 Z ",
1180
- fill: "currentColor",
1181
- stroke: "currentColor",
1182
- strokeWidth
1183
- }
1184
- ));
1321
+ return /* @__PURE__ */ import_react19.default.createElement(
1322
+ "svg",
1323
+ {
1324
+ width: size,
1325
+ height: size,
1326
+ viewBox: "0 0 64 64",
1327
+ preserveAspectRatio: "xMidYMax slice"
1328
+ },
1329
+ /* @__PURE__ */ import_react19.default.createElement(
1330
+ Liquid,
1331
+ {
1332
+ d: `M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z`,
1333
+ transform: "scale(1)",
1334
+ idBase,
1335
+ opacity: 0.7,
1336
+ liquidFill
1337
+ }
1338
+ ),
1339
+ /* @__PURE__ */ import_react19.default.createElement(
1340
+ "path",
1341
+ {
1342
+ d: "M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",
1343
+ fill: "none",
1344
+ stroke: "currentColor",
1345
+ strokeWidth
1346
+ }
1347
+ ),
1348
+ /* @__PURE__ */ import_react19.default.createElement(
1349
+ "rect",
1350
+ {
1351
+ x: 32,
1352
+ y: 39,
1353
+ width: 1,
1354
+ height: 16,
1355
+ fill: "currentColor",
1356
+ stroke: "currentColor",
1357
+ strokeWidth
1358
+ }
1359
+ ),
1360
+ /* @__PURE__ */ import_react19.default.createElement(
1361
+ "path",
1362
+ {
1363
+ d: " M24 55 Q32 54 40 55 L40 55 L24 55 Z ",
1364
+ fill: "currentColor",
1365
+ stroke: "currentColor",
1366
+ strokeWidth
1367
+ }
1368
+ )
1369
+ );
1185
1370
  }
1186
1371
 
1187
1372
  // src/components/glasses/ParfaitGlass.jsx
@@ -1192,10 +1377,18 @@ function ParfaitGlass({
1192
1377
  strokeWidth = 0.5,
1193
1378
  idBase = "ParfaitGlassGrad"
1194
1379
  }) {
1195
- return /* @__PURE__ */ import_react20.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react20.default.createElement(
1196
- Liquid,
1197
- {
1198
- d: `
1380
+ return /* @__PURE__ */ import_react20.default.createElement(
1381
+ "svg",
1382
+ {
1383
+ width: size,
1384
+ height: size,
1385
+ viewBox: "0 0 64 64",
1386
+ preserveAspectRatio: "xMidYMax slice"
1387
+ },
1388
+ /* @__PURE__ */ import_react20.default.createElement(
1389
+ Liquid,
1390
+ {
1391
+ d: `
1199
1392
  M22 12
1200
1393
  L42 12
1201
1394
  Q40 30 38 44
@@ -1203,26 +1396,30 @@ function ParfaitGlass({
1203
1396
  Q24 30 22 12
1204
1397
  Z
1205
1398
  `,
1206
- transform: "scale(0.98)",
1207
- idBase,
1208
- opacity: 0.7,
1209
- liquidFill
1210
- }
1211
- ), /* @__PURE__ */ import_react20.default.createElement(
1212
- "path",
1213
- {
1214
- d: "\n M22 12\n L42 12\n Q40 30 38 44\n Q32 50 26 44\n Q24 30 22 12\n Z\n ",
1215
- stroke: "currentColor",
1216
- strokeWidth,
1217
- fill: "none"
1218
- }
1219
- ), /* @__PURE__ */ import_react20.default.createElement("rect", { x: 31, y: 47, width: 2, height: 8, fill: "currentColor" }), /* @__PURE__ */ import_react20.default.createElement(
1220
- "path",
1221
- {
1222
- d: "\n M22 57 Q32 53 42 57 L42 57.5 L22 57.5 Z \n ",
1223
- fill: "currentColor"
1224
- }
1225
- ));
1399
+ transform: "scale(1)",
1400
+ idBase,
1401
+ opacity: 0.7,
1402
+ liquidFill
1403
+ }
1404
+ ),
1405
+ /* @__PURE__ */ import_react20.default.createElement(
1406
+ "path",
1407
+ {
1408
+ d: "\n M22 12\n L42 12\n Q40 30 38 44\n Q32 50 26 44\n Q24 30 22 12\n Z\n ",
1409
+ stroke: "currentColor",
1410
+ strokeWidth,
1411
+ fill: "none"
1412
+ }
1413
+ ),
1414
+ /* @__PURE__ */ import_react20.default.createElement("rect", { x: 31, y: 47, width: 2, height: 8, fill: "currentColor" }),
1415
+ /* @__PURE__ */ import_react20.default.createElement(
1416
+ "path",
1417
+ {
1418
+ d: "\n M22 57 Q32 53 42 57 L42 57.5 L22 57.5 Z \n ",
1419
+ fill: "currentColor"
1420
+ }
1421
+ )
1422
+ );
1226
1423
  }
1227
1424
 
1228
1425
  // src/components/glasses/PilsnerGlass.jsx
@@ -1233,32 +1430,43 @@ function PilsnerGlass({
1233
1430
  strokeWidth = 0.5,
1234
1431
  idBase = "PilsnerGlassGrad"
1235
1432
  }) {
1236
- return /* @__PURE__ */ import_react21.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react21.default.createElement(
1237
- Liquid,
1238
- {
1239
- d: `M24 10 L40 10 Q38 36 36 50 Q32 54 28 50 Q26 36 24 10 Z`,
1240
- transform: "scale(0.98)",
1241
- idBase,
1242
- opacity: 0.7,
1243
- liquidFill
1244
- }
1245
- ), /* @__PURE__ */ import_react21.default.createElement(
1246
- "path",
1247
- {
1248
- d: "M28 50 Q32 55 37 51 L37 56 Q35 56 28.5 56 Z",
1249
- transform: "scale(0.98)",
1250
- fill: "currentColor",
1251
- className: "base"
1252
- }
1253
- ), /* @__PURE__ */ import_react21.default.createElement(
1254
- "path",
1255
- {
1256
- d: "M24 10 L40 10 Q38 36 36 55 Q32 55 28 55 Q26 36 24 10 Z",
1257
- stroke: "currentColor",
1258
- strokeWidth,
1259
- fill: "none"
1260
- }
1261
- ));
1433
+ return /* @__PURE__ */ import_react21.default.createElement(
1434
+ "svg",
1435
+ {
1436
+ width: size,
1437
+ height: size,
1438
+ viewBox: "0 0 64 64",
1439
+ preserveAspectRatio: "xMidYMax slice"
1440
+ },
1441
+ /* @__PURE__ */ import_react21.default.createElement(
1442
+ Liquid,
1443
+ {
1444
+ d: `M24 10 L40 10 Q38 36 36 50 Q32 54 28 50 Q26 36 24 10 Z`,
1445
+ transform: "scale(1)",
1446
+ idBase,
1447
+ opacity: 0.7,
1448
+ liquidFill
1449
+ }
1450
+ ),
1451
+ /* @__PURE__ */ import_react21.default.createElement(
1452
+ "path",
1453
+ {
1454
+ d: "M28 50 Q32 55 37 51 L37 56 Q35 56 28.5 56 Z",
1455
+ transform: "scale(1)",
1456
+ fill: "currentColor",
1457
+ className: "base"
1458
+ }
1459
+ ),
1460
+ /* @__PURE__ */ import_react21.default.createElement(
1461
+ "path",
1462
+ {
1463
+ d: "M24 10 L40 10 Q38 36 36 55 Q32 55 28 55 Q26 36 24 10 Z",
1464
+ stroke: "currentColor",
1465
+ strokeWidth,
1466
+ fill: "none"
1467
+ }
1468
+ )
1469
+ );
1262
1470
  }
1263
1471
 
1264
1472
  // src/components/glasses/PintGlass.jsx
@@ -1270,35 +1478,46 @@ function PintGlass({
1270
1478
  strokeWidth = 0.5,
1271
1479
  idBase = "PintGlassGrad"
1272
1480
  }) {
1273
- return /* @__PURE__ */ import_react22.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react22.default.createElement(
1274
- Liquid,
1275
- {
1276
- d: `M18 10 L46 10 L42 54 L22 54 Z`,
1277
- transform: "scale(0.98)",
1278
- idBase,
1279
- opacity: 0.7,
1280
- liquidFill
1281
- }
1282
- ), /* @__PURE__ */ import_react22.default.createElement(
1283
- "path",
1284
- {
1285
- d: "M18 10 L46 10 L42 54 L22 54 Z",
1286
- stroke: "currentColor",
1287
- strokeWidth,
1288
- fill: "none"
1289
- }
1290
- ), /* @__PURE__ */ import_react22.default.createElement(
1291
- "rect",
1292
- {
1293
- x: 22,
1294
- y: 54,
1295
- width: 20,
1296
- height: 2,
1297
- fill: "currentColor",
1298
- stroke: "currentColor",
1299
- strokeWidth
1300
- }
1301
- ));
1481
+ return /* @__PURE__ */ import_react22.default.createElement(
1482
+ "svg",
1483
+ {
1484
+ width: size,
1485
+ height: size,
1486
+ viewBox: "0 0 64 64",
1487
+ preserveAspectRatio: "xMidYMax slice"
1488
+ },
1489
+ /* @__PURE__ */ import_react22.default.createElement(
1490
+ Liquid,
1491
+ {
1492
+ d: `M18 10 L46 10 L42 54 L22 54 Z`,
1493
+ transform: "scale(1)",
1494
+ idBase,
1495
+ opacity: 0.7,
1496
+ liquidFill
1497
+ }
1498
+ ),
1499
+ /* @__PURE__ */ import_react22.default.createElement(
1500
+ "path",
1501
+ {
1502
+ d: "M18 10 L46 10 L42 54 L22 54 Z",
1503
+ stroke: "currentColor",
1504
+ strokeWidth,
1505
+ fill: "none"
1506
+ }
1507
+ ),
1508
+ /* @__PURE__ */ import_react22.default.createElement(
1509
+ "rect",
1510
+ {
1511
+ x: 22,
1512
+ y: 54,
1513
+ width: 20,
1514
+ height: 2,
1515
+ fill: "currentColor",
1516
+ stroke: "currentColor",
1517
+ strokeWidth
1518
+ }
1519
+ )
1520
+ );
1302
1521
  }
1303
1522
 
1304
1523
  // src/components/glasses/PousseCafeGlass.jsx
@@ -1311,67 +1530,76 @@ function PousseCafeGlass({
1311
1530
  }) {
1312
1531
  const cx = 32;
1313
1532
  const height = Math.floor(size * 1.125);
1314
- return /* @__PURE__ */ import_react23.default.createElement("svg", { width: size, height, viewBox: "0 0 64 90" }, /* @__PURE__ */ import_react23.default.createElement("g", null, /* @__PURE__ */ import_react23.default.createElement(
1315
- Liquid,
1316
- {
1317
- d: `
1533
+ return /* @__PURE__ */ import_react23.default.createElement(
1534
+ "svg",
1535
+ {
1536
+ width: size,
1537
+ height,
1538
+ viewBox: "0 0 64 90",
1539
+ preserveAspectRatio: "xMidYMax slice"
1540
+ },
1541
+ /* @__PURE__ */ import_react23.default.createElement("g", null, /* @__PURE__ */ import_react23.default.createElement(
1542
+ Liquid,
1543
+ {
1544
+ d: `
1318
1545
  M ${cx - 11} 12
1319
1546
  L ${cx + 11} 12
1320
1547
  L ${cx + 9} 38
1321
1548
  Q ${cx} 42 ${cx - 9} 38
1322
1549
  Z
1323
1550
  `,
1324
- transform: "scale(0.98)",
1325
- idBase,
1326
- opacity: 0.7,
1327
- liquidFill
1328
- }
1329
- ), /* @__PURE__ */ import_react23.default.createElement(
1330
- "path",
1331
- {
1332
- d: `
1551
+ transform: "scale(1)",
1552
+ idBase,
1553
+ opacity: 0.7,
1554
+ liquidFill
1555
+ }
1556
+ ), /* @__PURE__ */ import_react23.default.createElement(
1557
+ "path",
1558
+ {
1559
+ d: `
1333
1560
  M ${cx - 11} 12
1334
1561
  L ${cx + 11} 12
1335
1562
  L ${cx + 9} 38
1336
1563
  Q ${cx} 42 ${cx - 9} 38
1337
1564
  Z
1338
1565
  `,
1339
- stroke: "currentColor",
1340
- strokeWidth,
1341
- fill: "none"
1342
- }
1343
- ), /* @__PURE__ */ import_react23.default.createElement(
1344
- "path",
1345
- {
1346
- d: `
1566
+ stroke: "currentColor",
1567
+ strokeWidth,
1568
+ fill: "none"
1569
+ }
1570
+ ), /* @__PURE__ */ import_react23.default.createElement(
1571
+ "path",
1572
+ {
1573
+ d: `
1347
1574
  M ${cx - 8} 18
1348
1575
  L ${cx + 8} 18
1349
1576
  L ${cx + 6} 30
1350
1577
  Q ${cx} 33 ${cx - 6} 30
1351
1578
  Z
1352
1579
  `,
1353
- fill: "rgba(255,255,255,0.06)"
1354
- }
1355
- ), /* @__PURE__ */ import_react23.default.createElement(
1356
- "rect",
1357
- {
1358
- x: cx - 1,
1359
- y: 40,
1360
- width: 2,
1361
- height: 10,
1362
- fill: "currentColor",
1363
- stroke: "currentColor",
1364
- strokeWidth
1365
- }
1366
- ), /* @__PURE__ */ import_react23.default.createElement(
1367
- "path",
1368
- {
1369
- d: `M ${cx - 6} 50 Q ${cx} 48 ${cx + 6} 50 L ${cx + 6} 50 L ${cx - 6} 50 Z`,
1370
- fill: "currentColor",
1371
- stroke: "currentColor",
1372
- strokeWidth
1373
- }
1374
- )));
1580
+ fill: "rgba(255,255,255,0.06)"
1581
+ }
1582
+ ), /* @__PURE__ */ import_react23.default.createElement(
1583
+ "rect",
1584
+ {
1585
+ x: cx - 1,
1586
+ y: 40,
1587
+ width: 2,
1588
+ height: 10,
1589
+ fill: "currentColor",
1590
+ stroke: "currentColor",
1591
+ strokeWidth
1592
+ }
1593
+ ), /* @__PURE__ */ import_react23.default.createElement(
1594
+ "path",
1595
+ {
1596
+ d: `M ${cx - 6} 50 Q ${cx} 48 ${cx + 6} 50 L ${cx + 6} 50 L ${cx - 6} 50 Z`,
1597
+ fill: "currentColor",
1598
+ stroke: "currentColor",
1599
+ strokeWidth
1600
+ }
1601
+ ))
1602
+ );
1375
1603
  }
1376
1604
 
1377
1605
  // src/components/glasses/PunchGlass.jsx
@@ -1382,10 +1610,18 @@ function PunchGlass({
1382
1610
  strokeWidth = 0.5,
1383
1611
  idBase = "PunchGlassGrad"
1384
1612
  }) {
1385
- return /* @__PURE__ */ import_react24.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react24.default.createElement("g", null, /* @__PURE__ */ import_react24.default.createElement(
1386
- Liquid,
1387
- {
1388
- d: `
1613
+ return /* @__PURE__ */ import_react24.default.createElement(
1614
+ "svg",
1615
+ {
1616
+ width: size,
1617
+ height: size,
1618
+ viewBox: "0 0 64 64",
1619
+ preserveAspectRatio: "xMidYMax slice"
1620
+ },
1621
+ /* @__PURE__ */ import_react24.default.createElement("g", null, /* @__PURE__ */ import_react24.default.createElement(
1622
+ Liquid,
1623
+ {
1624
+ d: `
1389
1625
  M22 18
1390
1626
  L42 18
1391
1627
  L38 30
@@ -1393,15 +1629,15 @@ function PunchGlass({
1393
1629
  L22 18
1394
1630
  Z
1395
1631
  `,
1396
- transform: "scale(0.98)",
1397
- idBase,
1398
- opacity: 0.7,
1399
- liquidFill
1400
- }
1401
- ), /* @__PURE__ */ import_react24.default.createElement(
1402
- "path",
1403
- {
1404
- d: `
1632
+ transform: "scale(1)",
1633
+ idBase,
1634
+ opacity: 0.7,
1635
+ liquidFill
1636
+ }
1637
+ ), /* @__PURE__ */ import_react24.default.createElement(
1638
+ "path",
1639
+ {
1640
+ d: `
1405
1641
  M22 18
1406
1642
  L42 18
1407
1643
  L38 30
@@ -1409,39 +1645,40 @@ function PunchGlass({
1409
1645
  L22 18
1410
1646
  Z
1411
1647
  `,
1412
- stroke: "currentColor",
1413
- strokeWidth,
1414
- fill: "none"
1415
- }
1416
- ), /* @__PURE__ */ import_react24.default.createElement(
1417
- "path",
1418
- {
1419
- d: `M28 20 L28 28 M32 20 L32 30 M36 20 L36 28`,
1420
- stroke: "currentColor",
1421
- strokeWidth: 0.6,
1422
- strokeLinecap: "round",
1423
- opacity: 0.06
1424
- }
1425
- ), /* @__PURE__ */ import_react24.default.createElement(
1426
- "rect",
1427
- {
1428
- x: 31,
1429
- y: 32,
1430
- width: 2,
1431
- height: 6,
1432
- fill: "currentColor",
1433
- stroke: "currentColor",
1434
- strokeWidth
1435
- }
1436
- ), /* @__PURE__ */ import_react24.default.createElement(
1437
- "path",
1438
- {
1439
- d: "M26 38 Q32 37 38 38 L38 38 L26 38 Z",
1440
- fill: "currentColor",
1441
- stroke: "currentColor",
1442
- strokeWidth
1443
- }
1444
- )));
1648
+ stroke: "currentColor",
1649
+ strokeWidth,
1650
+ fill: "none"
1651
+ }
1652
+ ), /* @__PURE__ */ import_react24.default.createElement(
1653
+ "path",
1654
+ {
1655
+ d: `M28 20 L28 28 M32 20 L32 30 M36 20 L36 28`,
1656
+ stroke: "currentColor",
1657
+ strokeWidth: 0.6,
1658
+ strokeLinecap: "round",
1659
+ opacity: 0.06
1660
+ }
1661
+ ), /* @__PURE__ */ import_react24.default.createElement(
1662
+ "rect",
1663
+ {
1664
+ x: 31,
1665
+ y: 32,
1666
+ width: 2,
1667
+ height: 6,
1668
+ fill: "currentColor",
1669
+ stroke: "currentColor",
1670
+ strokeWidth
1671
+ }
1672
+ ), /* @__PURE__ */ import_react24.default.createElement(
1673
+ "path",
1674
+ {
1675
+ d: "M26 38 Q32 37 38 38 L38 38 L26 38 Z",
1676
+ fill: "currentColor",
1677
+ stroke: "currentColor",
1678
+ strokeWidth
1679
+ }
1680
+ ))
1681
+ );
1445
1682
  }
1446
1683
 
1447
1684
  // src/components/glasses/RocksGlass.jsx
@@ -1452,37 +1689,48 @@ function RocksGlass({
1452
1689
  strokeWidth = 0.5,
1453
1690
  idBase = "RocksGlassGrad"
1454
1691
  }) {
1455
- return /* @__PURE__ */ import_react25.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react25.default.createElement(
1456
- Liquid,
1457
- {
1458
- d: `M14 24 L50 24 L50 58 L14 58 Z`,
1459
- transform: "scale(0.98)",
1460
- idBase,
1461
- opacity: 0.7,
1462
- liquidFill
1463
- }
1464
- ), /* @__PURE__ */ import_react25.default.createElement(
1465
- "rect",
1466
- {
1467
- x: 14,
1468
- y: 24,
1469
- width: 36,
1470
- height: 34,
1471
- stroke: "currentColor",
1472
- strokeWidth,
1473
- fill: "none"
1474
- }
1475
- ), /* @__PURE__ */ import_react25.default.createElement(
1476
- "line",
1477
- {
1478
- x1: 13.7,
1479
- y1: 59,
1480
- x2: 50.2,
1481
- y2: 59,
1482
- stroke: "currentColor",
1483
- strokeWidth: "2"
1484
- }
1485
- ));
1692
+ return /* @__PURE__ */ import_react25.default.createElement(
1693
+ "svg",
1694
+ {
1695
+ width: size,
1696
+ height: size,
1697
+ viewBox: "0 0 64 64",
1698
+ preserveAspectRatio: "xMidYMax slice"
1699
+ },
1700
+ /* @__PURE__ */ import_react25.default.createElement(
1701
+ Liquid,
1702
+ {
1703
+ d: `M14 24 L50 24 L50 58 L14 58 Z`,
1704
+ transform: "scale(1)",
1705
+ idBase,
1706
+ opacity: 0.7,
1707
+ liquidFill
1708
+ }
1709
+ ),
1710
+ /* @__PURE__ */ import_react25.default.createElement(
1711
+ "rect",
1712
+ {
1713
+ x: 14,
1714
+ y: 24,
1715
+ width: 36,
1716
+ height: 34,
1717
+ stroke: "currentColor",
1718
+ strokeWidth,
1719
+ fill: "none"
1720
+ }
1721
+ ),
1722
+ /* @__PURE__ */ import_react25.default.createElement(
1723
+ "line",
1724
+ {
1725
+ x1: 13.7,
1726
+ y1: 59,
1727
+ x2: 50.2,
1728
+ y2: 59,
1729
+ stroke: "currentColor",
1730
+ strokeWidth: "2"
1731
+ }
1732
+ )
1733
+ );
1486
1734
  }
1487
1735
 
1488
1736
  // src/components/glasses/SingleShotGlass.jsx
@@ -1493,35 +1741,46 @@ function SingleShotGlass({
1493
1741
  strokeWidth = 0.5,
1494
1742
  idBase = "SingleShotGlassGrad"
1495
1743
  }) {
1496
- return /* @__PURE__ */ import_react26.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react26.default.createElement(
1497
- "path",
1498
- {
1499
- d: "M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z",
1500
- stroke: "currentColor",
1501
- fill: "none",
1502
- strokeWidth
1503
- }
1504
- ), /* @__PURE__ */ import_react26.default.createElement(
1505
- Liquid,
1506
- {
1507
- d: `M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z`,
1508
- transform: "scale(0.98)",
1509
- idBase,
1510
- opacity: 0.7,
1511
- liquidFill
1512
- }
1513
- ), /* @__PURE__ */ import_react26.default.createElement(
1514
- "rect",
1515
- {
1516
- x: 25,
1517
- y: 48,
1518
- width: 14,
1519
- height: 3,
1520
- stroke: "currentColor",
1521
- strokeWidth,
1522
- fill: "none"
1523
- }
1524
- ));
1744
+ return /* @__PURE__ */ import_react26.default.createElement(
1745
+ "svg",
1746
+ {
1747
+ width: size,
1748
+ height: size,
1749
+ viewBox: "0 0 64 64",
1750
+ preserveAspectRatio: "xMidYMax slice"
1751
+ },
1752
+ /* @__PURE__ */ import_react26.default.createElement(
1753
+ "path",
1754
+ {
1755
+ d: "M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z",
1756
+ stroke: "currentColor",
1757
+ fill: "none",
1758
+ strokeWidth
1759
+ }
1760
+ ),
1761
+ /* @__PURE__ */ import_react26.default.createElement(
1762
+ Liquid,
1763
+ {
1764
+ d: `M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z`,
1765
+ transform: "scale(1)",
1766
+ idBase,
1767
+ opacity: 0.7,
1768
+ liquidFill
1769
+ }
1770
+ ),
1771
+ /* @__PURE__ */ import_react26.default.createElement(
1772
+ "rect",
1773
+ {
1774
+ x: 25,
1775
+ y: 48,
1776
+ width: 14,
1777
+ height: 3,
1778
+ stroke: "currentColor",
1779
+ strokeWidth,
1780
+ fill: "none"
1781
+ }
1782
+ )
1783
+ );
1525
1784
  }
1526
1785
 
1527
1786
  // src/components/glasses/SlingGlass.jsx
@@ -1532,43 +1791,56 @@ function SlingGlass({
1532
1791
  strokeWidth = 0.5,
1533
1792
  idBase = "SlingGlassGrad"
1534
1793
  }) {
1535
- return /* @__PURE__ */ import_react27.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react27.default.createElement(
1536
- "line",
1537
- {
1538
- x1: 24,
1539
- y1: 12,
1540
- x2: 40,
1541
- y2: 12,
1542
- stroke: "currentColor",
1543
- strokeWidth
1544
- }
1545
- ), /* @__PURE__ */ import_react27.default.createElement(
1546
- Liquid,
1547
- {
1548
- d: `M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z`,
1549
- transform: "scale(0.98)",
1550
- idBase,
1551
- opacity: 0.7,
1552
- liquidFill
1553
- }
1554
- ), /* @__PURE__ */ import_react27.default.createElement(
1555
- "path",
1556
- {
1557
- d: "M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z",
1558
- stroke: "currentColor",
1559
- strokeWidth,
1560
- fill: "none"
1561
- }
1562
- ), /* @__PURE__ */ import_react27.default.createElement("rect", { x: 31, y: 54, width: 2, height: 2, fill: "currentColor" }), /* @__PURE__ */ import_react27.default.createElement(
1563
- "path",
1564
- {
1565
- d: "M29 56 Q32 55 35 56 L35 56 L29 56 Z",
1566
- fill: "currentColor",
1567
- stroke: "currentColor",
1568
- strokeWidth,
1569
- rx: 1
1570
- }
1571
- ));
1794
+ return /* @__PURE__ */ import_react27.default.createElement(
1795
+ "svg",
1796
+ {
1797
+ width: size,
1798
+ height: size,
1799
+ viewBox: "0 0 64 64",
1800
+ preserveAspectRatio: "xMidYMax slice"
1801
+ },
1802
+ /* @__PURE__ */ import_react27.default.createElement(
1803
+ "line",
1804
+ {
1805
+ x1: 24,
1806
+ y1: 12,
1807
+ x2: 40,
1808
+ y2: 12,
1809
+ stroke: "currentColor",
1810
+ strokeWidth
1811
+ }
1812
+ ),
1813
+ /* @__PURE__ */ import_react27.default.createElement(
1814
+ Liquid,
1815
+ {
1816
+ d: `M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z`,
1817
+ transform: "scale(1)",
1818
+ idBase,
1819
+ opacity: 0.7,
1820
+ liquidFill
1821
+ }
1822
+ ),
1823
+ /* @__PURE__ */ import_react27.default.createElement(
1824
+ "path",
1825
+ {
1826
+ d: "M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z",
1827
+ stroke: "currentColor",
1828
+ strokeWidth,
1829
+ fill: "none"
1830
+ }
1831
+ ),
1832
+ /* @__PURE__ */ import_react27.default.createElement("rect", { x: 31, y: 54, width: 2, height: 2, fill: "currentColor" }),
1833
+ /* @__PURE__ */ import_react27.default.createElement(
1834
+ "path",
1835
+ {
1836
+ d: "M29 56 Q32 55 35 56 L35 56 L29 56 Z",
1837
+ fill: "currentColor",
1838
+ stroke: "currentColor",
1839
+ strokeWidth,
1840
+ rx: 1
1841
+ }
1842
+ )
1843
+ );
1572
1844
  }
1573
1845
 
1574
1846
  // src/components/glasses/SnifterGlass.jsx
@@ -1579,53 +1851,66 @@ function SnifterGlass({
1579
1851
  strokeWidth = 0.5,
1580
1852
  idBase = "SnifterGlassGrad"
1581
1853
  }) {
1582
- return /* @__PURE__ */ import_react28.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react28.default.createElement(
1583
- "line",
1584
- {
1585
- x1: 22,
1586
- y1: 18,
1587
- x2: 42,
1588
- y2: 18,
1589
- stroke: "currentColor",
1590
- strokeWidth
1591
- }
1592
- ), /* @__PURE__ */ import_react28.default.createElement(
1593
- "path",
1594
- {
1595
- d: "\n M22 18\n C16 32, 16 46, 32 52\n C48 46, 48 32, 42 18\n Z\n ",
1596
- stroke: "currentColor",
1597
- strokeWidth,
1598
- fill: "none"
1599
- }
1600
- ), /* @__PURE__ */ import_react28.default.createElement(
1601
- Liquid,
1602
- {
1603
- d: ` M22 18 C16 32, 16 46, 32 52 C48 46, 48 32, 42 18 Z `,
1604
- transform: "scale(0.98)",
1605
- idBase,
1606
- opacity: 0.7,
1607
- liquidFill
1608
- }
1609
- ), /* @__PURE__ */ import_react28.default.createElement(
1610
- "rect",
1611
- {
1612
- x: 30,
1613
- y: 51,
1614
- width: 4,
1615
- height: 4,
1616
- fill: "currentColor",
1617
- stroke: "currentColor",
1618
- strokeWidth
1619
- }
1620
- ), /* @__PURE__ */ import_react28.default.createElement(
1621
- "path",
1622
- {
1623
- d: "M26 54 Q32 51 38 54 L38 55 L26 55 Z",
1624
- fill: "currentColor",
1625
- stroke: "currentColor",
1626
- strokeWidth
1627
- }
1628
- ));
1854
+ return /* @__PURE__ */ import_react28.default.createElement(
1855
+ "svg",
1856
+ {
1857
+ width: size,
1858
+ height: size,
1859
+ viewBox: "0 0 64 64",
1860
+ preserveAspectRatio: "xMidYMax slice"
1861
+ },
1862
+ /* @__PURE__ */ import_react28.default.createElement(
1863
+ "line",
1864
+ {
1865
+ x1: 22,
1866
+ y1: 18,
1867
+ x2: 42,
1868
+ y2: 18,
1869
+ stroke: "currentColor",
1870
+ strokeWidth
1871
+ }
1872
+ ),
1873
+ /* @__PURE__ */ import_react28.default.createElement(
1874
+ "path",
1875
+ {
1876
+ d: "\n M22 18\n C16 32, 16 46, 32 52\n C48 46, 48 32, 42 18\n Z\n ",
1877
+ stroke: "currentColor",
1878
+ strokeWidth,
1879
+ fill: "none"
1880
+ }
1881
+ ),
1882
+ /* @__PURE__ */ import_react28.default.createElement(
1883
+ Liquid,
1884
+ {
1885
+ d: ` M22 18 C16 32, 16 46, 32 52 C48 46, 48 32, 42 18 Z `,
1886
+ transform: "scale(1)",
1887
+ idBase,
1888
+ opacity: 0.7,
1889
+ liquidFill
1890
+ }
1891
+ ),
1892
+ /* @__PURE__ */ import_react28.default.createElement(
1893
+ "rect",
1894
+ {
1895
+ x: 30,
1896
+ y: 51,
1897
+ width: 4,
1898
+ height: 4,
1899
+ fill: "currentColor",
1900
+ stroke: "currentColor",
1901
+ strokeWidth
1902
+ }
1903
+ ),
1904
+ /* @__PURE__ */ import_react28.default.createElement(
1905
+ "path",
1906
+ {
1907
+ d: "M26 54 Q32 51 38 54 L38 55 L26 55 Z",
1908
+ fill: "currentColor",
1909
+ stroke: "currentColor",
1910
+ strokeWidth
1911
+ }
1912
+ )
1913
+ );
1629
1914
  }
1630
1915
 
1631
1916
  // src/components/glasses/SourGlass.jsx
@@ -1636,46 +1921,59 @@ function SourGlass({
1636
1921
  strokeWidth = 0.5,
1637
1922
  idBase = "SourGlassGrad"
1638
1923
  }) {
1639
- return /* @__PURE__ */ import_react29.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react29.default.createElement(
1640
- "line",
1641
- {
1642
- x1: 16,
1643
- y1: 18,
1644
- x2: 48,
1645
- y2: 18,
1646
- stroke: "currentColor",
1647
- strokeWidth
1648
- }
1649
- ), /* @__PURE__ */ import_react29.default.createElement(
1650
- Liquid,
1651
- {
1652
- d: `
1924
+ return /* @__PURE__ */ import_react29.default.createElement(
1925
+ "svg",
1926
+ {
1927
+ width: size,
1928
+ height: size,
1929
+ viewBox: "0 0 64 64",
1930
+ preserveAspectRatio: "xMidYMax slice"
1931
+ },
1932
+ /* @__PURE__ */ import_react29.default.createElement(
1933
+ "line",
1934
+ {
1935
+ x1: 16,
1936
+ y1: 18,
1937
+ x2: 48,
1938
+ y2: 18,
1939
+ stroke: "currentColor",
1940
+ strokeWidth
1941
+ }
1942
+ ),
1943
+ /* @__PURE__ */ import_react29.default.createElement(
1944
+ Liquid,
1945
+ {
1946
+ d: `
1653
1947
  M16 18
1654
1948
  L48 18
1655
1949
  C46 30, 46 38, 32 42
1656
1950
  C18 38, 18 30, 16 18
1657
1951
  Z
1658
1952
  `,
1659
- transform: "scale(0.98)",
1660
- idBase,
1661
- opacity: 0.7,
1662
- liquidFill
1663
- }
1664
- ), /* @__PURE__ */ import_react29.default.createElement(
1665
- "path",
1666
- {
1667
- d: "\n M16 18\n L48 18\n C46 30, 46 38, 32 42\n C18 38, 18 30, 16 18\n Z\n ",
1668
- stroke: "currentColor",
1669
- strokeWidth,
1670
- fill: "none"
1671
- }
1672
- ), /* @__PURE__ */ import_react29.default.createElement("rect", { x: 31, y: 42, width: 2, height: 12, fill: "currentColor" }), /* @__PURE__ */ import_react29.default.createElement(
1673
- "path",
1674
- {
1675
- d: "\n M22 54\n C22 52, 42 52, 42 54\n L42 54\n L22 54\n Z\n ",
1676
- fill: "currentColor"
1677
- }
1678
- ));
1953
+ transform: "scale(1)",
1954
+ idBase,
1955
+ opacity: 0.7,
1956
+ liquidFill
1957
+ }
1958
+ ),
1959
+ /* @__PURE__ */ import_react29.default.createElement(
1960
+ "path",
1961
+ {
1962
+ d: "\n M16 18\n L48 18\n C46 30, 46 38, 32 42\n C18 38, 18 30, 16 18\n Z\n ",
1963
+ stroke: "currentColor",
1964
+ strokeWidth,
1965
+ fill: "none"
1966
+ }
1967
+ ),
1968
+ /* @__PURE__ */ import_react29.default.createElement("rect", { x: 31, y: 42, width: 2, height: 12, fill: "currentColor" }),
1969
+ /* @__PURE__ */ import_react29.default.createElement(
1970
+ "path",
1971
+ {
1972
+ d: "\n M22 54\n C22 52, 42 52, 42 54\n L42 54\n L22 54\n Z\n ",
1973
+ fill: "currentColor"
1974
+ }
1975
+ )
1976
+ );
1679
1977
  }
1680
1978
 
1681
1979
  // src/components/glasses/TankardGlass.jsx
@@ -1686,37 +1984,49 @@ function TankardGlass({
1686
1984
  strokeWidth = 1,
1687
1985
  idBase = "TankardGlassGrad"
1688
1986
  }) {
1689
- return /* @__PURE__ */ import_react30.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react30.default.createElement("rect", { x: 13, y: 44, width: 36, height: 4, fill: "currentColor" }), /* @__PURE__ */ import_react30.default.createElement(
1690
- Liquid,
1691
- {
1692
- d: `M14 10 L48 10 L48 44 L14 44 Z`,
1693
- transform: "scale(0.98)",
1694
- idBase,
1695
- opacity: 0.7,
1696
- liquidFill
1697
- }
1698
- ), /* @__PURE__ */ import_react30.default.createElement(
1699
- "rect",
1700
- {
1701
- x: 14,
1702
- y: 10,
1703
- width: 34,
1704
- height: 34,
1705
- fill: "none",
1706
- stroke: "currentColor",
1707
- strokeWidth: strokeWidth * 1.4
1708
- }
1709
- ), /* @__PURE__ */ import_react30.default.createElement("g", null, /* @__PURE__ */ import_react30.default.createElement(
1710
- "path",
1711
- {
1712
- d: "M49 17 C60 19 60 34 49 37",
1713
- stroke: "currentColor",
1714
- strokeWidth: strokeWidth * 3,
1715
- strokeLinecap: "round",
1716
- strokeLinejoin: "round",
1717
- fill: "none"
1718
- }
1719
- )));
1987
+ return /* @__PURE__ */ import_react30.default.createElement(
1988
+ "svg",
1989
+ {
1990
+ width: size,
1991
+ height: size,
1992
+ viewBox: "0 0 64 64",
1993
+ preserveAspectRatio: "xMidYMax slice"
1994
+ },
1995
+ /* @__PURE__ */ import_react30.default.createElement("rect", { x: 13, y: 44, width: 36, height: 4, fill: "currentColor" }),
1996
+ /* @__PURE__ */ import_react30.default.createElement(
1997
+ Liquid,
1998
+ {
1999
+ d: `M14 10 L48 10 L48 44 L14 44 Z`,
2000
+ transform: "scale(1)",
2001
+ idBase,
2002
+ opacity: 0.7,
2003
+ liquidFill
2004
+ }
2005
+ ),
2006
+ /* @__PURE__ */ import_react30.default.createElement(
2007
+ "rect",
2008
+ {
2009
+ x: 14,
2010
+ y: 10,
2011
+ width: 34,
2012
+ height: 34,
2013
+ fill: "none",
2014
+ stroke: "currentColor",
2015
+ strokeWidth: strokeWidth * 1.4
2016
+ }
2017
+ ),
2018
+ /* @__PURE__ */ import_react30.default.createElement("g", null, /* @__PURE__ */ import_react30.default.createElement(
2019
+ "path",
2020
+ {
2021
+ d: "M49 17 C60 19 60 34 49 37",
2022
+ stroke: "currentColor",
2023
+ strokeWidth: strokeWidth * 3,
2024
+ strokeLinecap: "round",
2025
+ strokeLinejoin: "round",
2026
+ fill: "none"
2027
+ }
2028
+ ))
2029
+ );
1720
2030
  }
1721
2031
 
1722
2032
  // src/components/glasses/TikiGlass.jsx
@@ -1727,39 +2037,52 @@ function TikiGlass({
1727
2037
  strokeWidth = 0.5,
1728
2038
  idBase = "TikiGlassGrad"
1729
2039
  }) {
1730
- return /* @__PURE__ */ import_react31.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react31.default.createElement("rect", { x: 21.75, y: 52, width: 20.5, height: 2, fill: "currentColor" }), /* @__PURE__ */ import_react31.default.createElement(
1731
- "rect",
1732
- {
1733
- x: 20,
1734
- y: 50,
1735
- width: 24,
1736
- height: 4,
1737
- rx: 2,
1738
- fill: "currentColor",
1739
- opacity: 0.06
1740
- }
1741
- ), /* @__PURE__ */ import_react31.default.createElement(
1742
- "rect",
1743
- {
1744
- x: 22,
1745
- y: 10,
1746
- width: 20,
1747
- height: 42,
1748
- stroke: "currentColor",
1749
- strokeWidth,
1750
- fill: "none",
1751
- opacity: 0.9
1752
- }
1753
- ), /* @__PURE__ */ import_react31.default.createElement(
1754
- Liquid,
1755
- {
1756
- d: `M21 9 L41 9 L41 51 L21 51 Z`,
1757
- transform: "scale(0.98)",
1758
- idBase,
1759
- opacity: 0.7,
1760
- liquidFill
1761
- }
1762
- ), /* @__PURE__ */ import_react31.default.createElement("ellipse", { cx: 32, cy: 32, rx: 6, ry: 3, fill: "currentColor" }));
2040
+ return /* @__PURE__ */ import_react31.default.createElement(
2041
+ "svg",
2042
+ {
2043
+ width: size,
2044
+ height: size,
2045
+ viewBox: "0 0 64 64",
2046
+ preserveAspectRatio: "xMidYMax slice"
2047
+ },
2048
+ /* @__PURE__ */ import_react31.default.createElement("rect", { x: 21.75, y: 52, width: 20.5, height: 2, fill: "currentColor" }),
2049
+ /* @__PURE__ */ import_react31.default.createElement(
2050
+ "rect",
2051
+ {
2052
+ x: 20,
2053
+ y: 50,
2054
+ width: 24,
2055
+ height: 4,
2056
+ rx: 2,
2057
+ fill: "currentColor",
2058
+ opacity: 0.06
2059
+ }
2060
+ ),
2061
+ /* @__PURE__ */ import_react31.default.createElement(
2062
+ "rect",
2063
+ {
2064
+ x: 22,
2065
+ y: 10,
2066
+ width: 20,
2067
+ height: 42,
2068
+ stroke: "currentColor",
2069
+ strokeWidth,
2070
+ fill: "none",
2071
+ opacity: 0.9
2072
+ }
2073
+ ),
2074
+ /* @__PURE__ */ import_react31.default.createElement(
2075
+ Liquid,
2076
+ {
2077
+ d: `M21 9 L41 9 L41 51 L21 51 Z`,
2078
+ transform: "scale(1)",
2079
+ idBase,
2080
+ opacity: 0.7,
2081
+ liquidFill
2082
+ }
2083
+ ),
2084
+ /* @__PURE__ */ import_react31.default.createElement("ellipse", { cx: 32, cy: 32, rx: 6, ry: 3, fill: "currentColor" })
2085
+ );
1763
2086
  }
1764
2087
 
1765
2088
  // src/components/glasses/ToddyGlass.jsx
@@ -1770,35 +2093,48 @@ function ToddyGlass({
1770
2093
  strokeWidth = 0.8,
1771
2094
  idBase = "ToddyGlassGrad"
1772
2095
  }) {
1773
- return /* @__PURE__ */ import_react32.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react32.default.createElement(
1774
- Liquid,
1775
- {
1776
- d: `M22 12 H42 V40 H22 Z`,
1777
- transform: "scale(0.98)",
1778
- idBase,
1779
- opacity: 0.7,
1780
- liquidFill
1781
- }
1782
- ), /* @__PURE__ */ import_react32.default.createElement(
1783
- "path",
1784
- {
1785
- d: "M22 12 H42 V40 H22 Z",
1786
- fill: "none",
1787
- stroke: "currentColor",
1788
- strokeWidth,
1789
- strokeLinejoin: "round"
1790
- }
1791
- ), /* @__PURE__ */ import_react32.default.createElement("g", null, /* @__PURE__ */ import_react32.default.createElement(
1792
- "path",
1793
- {
1794
- d: "M43 16 C52 18 52 34 43 36",
1795
- stroke: "currentColor",
1796
- strokeWidth: strokeWidth * 2.4,
1797
- strokeLinecap: "round",
1798
- strokeLinejoin: "round",
1799
- fill: "none"
1800
- }
1801
- )), /* @__PURE__ */ import_react32.default.createElement("rect", { x: 30, y: 40, width: 4, height: 6, fill: "currentColor" }), /* @__PURE__ */ import_react32.default.createElement("path", { d: "M22 47 Q32 43 42 47 L42 48 L22 48 Z", fill: "currentColor" }));
2096
+ return /* @__PURE__ */ import_react32.default.createElement(
2097
+ "svg",
2098
+ {
2099
+ width: size,
2100
+ height: size,
2101
+ viewBox: "0 0 64 64",
2102
+ preserveAspectRatio: "xMidYMax slice"
2103
+ },
2104
+ /* @__PURE__ */ import_react32.default.createElement(
2105
+ Liquid,
2106
+ {
2107
+ d: `M22 12 H42 V40 H22 Z`,
2108
+ transform: "scale(1)",
2109
+ idBase,
2110
+ opacity: 0.7,
2111
+ liquidFill
2112
+ }
2113
+ ),
2114
+ /* @__PURE__ */ import_react32.default.createElement(
2115
+ "path",
2116
+ {
2117
+ d: "M22 12 H42 V40 H22 Z",
2118
+ fill: "none",
2119
+ stroke: "currentColor",
2120
+ strokeWidth,
2121
+ strokeLinejoin: "round"
2122
+ }
2123
+ ),
2124
+ /* @__PURE__ */ import_react32.default.createElement("g", null, /* @__PURE__ */ import_react32.default.createElement(
2125
+ "path",
2126
+ {
2127
+ d: "M43 16 C52 18 52 34 43 36",
2128
+ stroke: "currentColor",
2129
+ strokeWidth: strokeWidth * 2.4,
2130
+ strokeLinecap: "round",
2131
+ strokeLinejoin: "round",
2132
+ fill: "none"
2133
+ }
2134
+ )),
2135
+ /* @__PURE__ */ import_react32.default.createElement("rect", { x: 30, y: 40, width: 4, height: 6, fill: "currentColor" }),
2136
+ /* @__PURE__ */ import_react32.default.createElement("path", { d: "M22 47 Q32 43 42 47 L42 48 L22 48 Z", fill: "currentColor" })
2137
+ );
1802
2138
  }
1803
2139
 
1804
2140
  // src/components/glasses/WhiskeyShotGlass.jsx
@@ -1811,39 +2147,50 @@ function WhiskeyShotGlass({
1811
2147
  // any extra props will be forwarded to `Liquid`
1812
2148
  ...liquidProps
1813
2149
  }) {
1814
- return /* @__PURE__ */ import_react33.default.createElement("svg", { width: size, height: size, viewBox: "0 0 64 64" }, /* @__PURE__ */ import_react33.default.createElement(
1815
- "rect",
1816
- {
1817
- x: 22,
1818
- y: 30,
1819
- width: 20,
1820
- height: 18,
1821
- stroke: "currentColor",
1822
- fill: "none",
1823
- strokeWidth
1824
- }
1825
- ), /* @__PURE__ */ import_react33.default.createElement(
1826
- Liquid,
1827
- {
1828
- d: `M22 30 L42 30 L42 48 L22 48 Z`,
1829
- transform: "scale(0.98)",
1830
- idBase,
1831
- opacity: 0.7,
1832
- liquidFill,
1833
- ...liquidProps
1834
- }
1835
- ), /* @__PURE__ */ import_react33.default.createElement(
1836
- "rect",
1837
- {
1838
- x: 22,
1839
- y: 48,
1840
- width: 20,
1841
- height: 3,
1842
- fill: "none",
1843
- stroke: "currentColor",
1844
- strokeWidth
1845
- }
1846
- ));
2150
+ return /* @__PURE__ */ import_react33.default.createElement(
2151
+ "svg",
2152
+ {
2153
+ width: size,
2154
+ height: size,
2155
+ viewBox: "0 0 64 64",
2156
+ preserveAspectRatio: "xMidYMax slice"
2157
+ },
2158
+ /* @__PURE__ */ import_react33.default.createElement(
2159
+ "rect",
2160
+ {
2161
+ x: 22,
2162
+ y: 30,
2163
+ width: 20,
2164
+ height: 18,
2165
+ stroke: "currentColor",
2166
+ fill: "none",
2167
+ strokeWidth
2168
+ }
2169
+ ),
2170
+ /* @__PURE__ */ import_react33.default.createElement(
2171
+ Liquid,
2172
+ {
2173
+ d: `M22 30 L42 30 L42 48 L22 48 Z`,
2174
+ transform: "scale(1)",
2175
+ idBase,
2176
+ opacity: 0.7,
2177
+ liquidFill,
2178
+ ...liquidProps
2179
+ }
2180
+ ),
2181
+ /* @__PURE__ */ import_react33.default.createElement(
2182
+ "rect",
2183
+ {
2184
+ x: 22,
2185
+ y: 48,
2186
+ width: 20,
2187
+ height: 3,
2188
+ fill: "none",
2189
+ stroke: "currentColor",
2190
+ strokeWidth
2191
+ }
2192
+ )
2193
+ );
1847
2194
  }
1848
2195
 
1849
2196
  // src/components/glasses/WineGlass.jsx
@@ -1855,58 +2202,133 @@ function WineGlass({
1855
2202
  idBase = "WineGlassGrad"
1856
2203
  }) {
1857
2204
  const height = Math.round(size * 90 / 80);
1858
- return /* @__PURE__ */ import_react34.default.createElement("svg", { width: size, height, viewBox: "0 0 64 90" }, /* @__PURE__ */ import_react34.default.createElement(
1859
- Liquid,
1860
- {
1861
- d: `M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z`,
1862
- transform: "scale(0.98)",
1863
- idBase,
1864
- opacity: 0.7,
1865
- liquidFill
1866
- }
1867
- ), /* @__PURE__ */ import_react34.default.createElement(
1868
- "path",
1869
- {
1870
- d: "M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",
1871
- fill: "none",
1872
- stroke: "currentColor",
1873
- strokeWidth
1874
- }
1875
- ), /* @__PURE__ */ import_react34.default.createElement("rect", { x: 31.5, y: 62, width: 1, height: 25, fill: "currentColor" }), /* @__PURE__ */ import_react34.default.createElement("path", { d: "M24 86 Q32 84 40 86 L40 87 L24 87 Z", fill: "currentColor" }));
2205
+ return /* @__PURE__ */ import_react34.default.createElement(
2206
+ "svg",
2207
+ {
2208
+ width: size,
2209
+ height,
2210
+ viewBox: "0 0 64 90",
2211
+ preserveAspectRatio: "xMidYMax slice"
2212
+ },
2213
+ /* @__PURE__ */ import_react34.default.createElement(
2214
+ Liquid,
2215
+ {
2216
+ d: `M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z`,
2217
+ transform: "scale(1)",
2218
+ idBase,
2219
+ opacity: 0.7,
2220
+ liquidFill
2221
+ }
2222
+ ),
2223
+ /* @__PURE__ */ import_react34.default.createElement(
2224
+ "path",
2225
+ {
2226
+ d: "M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",
2227
+ fill: "none",
2228
+ stroke: "currentColor",
2229
+ strokeWidth
2230
+ }
2231
+ ),
2232
+ /* @__PURE__ */ import_react34.default.createElement("rect", { x: 31.5, y: 62, width: 1, height: 25, fill: "currentColor" }),
2233
+ /* @__PURE__ */ import_react34.default.createElement("path", { d: "M24 86 Q32 84 40 86 L40 87 L24 87 Z", fill: "currentColor" })
2234
+ );
1876
2235
  }
1877
2236
 
1878
2237
  // src/glasses.js
1879
2238
  var glasses = [
1880
- { name: "AbsintheGlass", about: "Tall narrow glass traditionally used for absinthe" },
1881
- { name: "BrandySnifterGlass", about: "Short, wide bowl for brandy and aromatics" },
1882
- { name: "CollinsGlass", about: "Tall, slim highball-style glass for long drinks" },
2239
+ {
2240
+ name: "AbsintheGlass",
2241
+ about: "Tall narrow glass traditionally used for absinthe"
2242
+ },
2243
+ {
2244
+ name: "BrandySnifterGlass",
2245
+ about: "Short, wide bowl for brandy and aromatics"
2246
+ },
2247
+ {
2248
+ name: "CollinsGlass",
2249
+ about: "Tall, slim highball-style glass for long drinks"
2250
+ },
1883
2251
  { name: "CopperMug", about: "Insulated mug commonly used for Moscow Mules" },
1884
- { name: "CordialGlass", about: "Small stemmed glass for cordials and liqueurs" },
1885
- { name: "CoupeGlass", about: "Shallow, broad-bowled stemmed glass for cocktails" },
1886
- { name: "DemitasseGlass", about: "Tiny cup used for espresso or small servings" },
1887
- { name: "DoubleShotGlass", about: "Small glass sized for a double shot or liqueur" },
2252
+ {
2253
+ name: "CordialGlass",
2254
+ about: "Small stemmed glass for cordials and liqueurs"
2255
+ },
2256
+ {
2257
+ name: "CoupeGlass",
2258
+ about: "Shallow, broad-bowled stemmed glass for cocktails"
2259
+ },
2260
+ {
2261
+ name: "DemitasseGlass",
2262
+ about: "Tiny cup used for espresso or small servings"
2263
+ },
2264
+ {
2265
+ name: "DoubleShotGlass",
2266
+ about: "Small glass sized for a double shot or liqueur"
2267
+ },
1888
2268
  { name: "FizzGlass", about: "Tall glass for fizzy, highball-like cocktails" },
1889
- { name: "FluteGlass", about: "Narrow stemmed glass for sparkling cocktails or champagne" },
1890
- { name: "GobletGlass", about: "Large bowl stemmed glass for water or wine-style serves" },
2269
+ {
2270
+ name: "FluteGlass",
2271
+ about: "Narrow stemmed glass for sparkling cocktails or champagne"
2272
+ },
2273
+ {
2274
+ name: "GobletGlass",
2275
+ about: "Large bowl stemmed glass for water or wine-style serves"
2276
+ },
1891
2277
  { name: "HighballGlass", about: "Tall glass for mixed drinks over ice" },
1892
- { name: "HurricaneGlass", about: "Curved glass used for tropical, rum-forward drinks" },
1893
- { name: "IrishCoffeeGlass", about: "Handled glass for hot cocktails like Irish Coffee" },
1894
- { name: "JulepCup", about: "Silver or metal cup for mint juleps served over crushed ice" },
1895
- { name: "MargaritaGlass", about: "Broad-rimmed glass typically used for margaritas" },
1896
- { name: "MartiniGlass", about: "Classic conical stemmed glass for martinis and cocktails" },
1897
- { name: "NickAndNoraGlass", about: "Small stemmed cocktail glass named for film characters" },
1898
- { name: "ParfaitGlass", about: "Tall, elegant glass for layered desserts or cocktails" },
2278
+ {
2279
+ name: "HurricaneGlass",
2280
+ about: "Curved glass used for tropical, rum-forward drinks"
2281
+ },
2282
+ {
2283
+ name: "IrishCoffeeGlass",
2284
+ about: "Handled glass for hot cocktails like Irish Coffee"
2285
+ },
2286
+ {
2287
+ name: "JulepCup",
2288
+ about: "Silver or metal cup for mint juleps served over crushed ice"
2289
+ },
2290
+ {
2291
+ name: "MargaritaGlass",
2292
+ about: "Broad-rimmed glass typically used for margaritas"
2293
+ },
2294
+ {
2295
+ name: "MartiniGlass",
2296
+ about: "Classic conical stemmed glass for martinis and cocktails"
2297
+ },
2298
+ {
2299
+ name: "NickAndNoraGlass",
2300
+ about: "Small stemmed cocktail glass named for film characters"
2301
+ },
2302
+ {
2303
+ name: "ParfaitGlass",
2304
+ about: "Tall, elegant glass for layered desserts or cocktails"
2305
+ },
1899
2306
  { name: "PilsnerGlass", about: "Tall tapered glass for pilsner-style beers" },
1900
2307
  { name: "PintGlass", about: "Standard pint glass for beer servings" },
1901
- { name: "PousseCafeGlass", about: "Very tall, narrow glass for layered pousse-caf\xE9s" },
2308
+ {
2309
+ name: "PousseCafeGlass",
2310
+ about: "Very tall, narrow glass for layered pousse-caf\xE9s"
2311
+ },
1902
2312
  { name: "PunchGlass", about: "Large bowl or glass used for punch servings" },
1903
- { name: "RocksGlass", about: "Short, wide glass for spirits served over ice" },
2313
+ {
2314
+ name: "RocksGlass",
2315
+ about: "Short, wide glass for spirits served over ice"
2316
+ },
1904
2317
  { name: "SingleShotGlass", about: "Small single-shot glass for neat pours" },
1905
- { name: "SlingGlass", about: "Stemmed glass used historically for sling cocktails" },
1906
- { name: "SnifterGlass", about: "Rounded glass for nosing spirits like brandy or cognac" },
2318
+ {
2319
+ name: "SlingGlass",
2320
+ about: "Stemmed glass used historically for sling cocktails"
2321
+ },
2322
+ {
2323
+ name: "SnifterGlass",
2324
+ about: "Rounded glass for nosing spirits like brandy or cognac"
2325
+ },
1907
2326
  { name: "SourGlass", about: "Stemmed glass for sours and shaken cocktails" },
1908
2327
  { name: "TankardGlass", about: "Large handled mug, often used for beer" },
1909
- { name: "TikiGlass", about: "Themed ceramic or glass mug for tiki-style cocktails" },
2328
+ {
2329
+ name: "TikiGlass",
2330
+ about: "Themed ceramic or glass mug for tiki-style cocktails"
2331
+ },
1910
2332
  { name: "ToddyGlass", about: "Handled mug for hot toddies and warm drinks" },
1911
2333
  { name: "WhiskeyShotGlass", about: "Small glass for whiskey shots" },
1912
2334
  { name: "WineGlass", about: "Standard stemmed glass for wine service" }