@bace51/cocktailjs-react 1.0.10 → 1.0.12

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
@@ -257,7 +257,7 @@ function AbsintheGlass({
257
257
  width: size,
258
258
  height,
259
259
  viewBox: "0 0 64 90",
260
- preserveAspectRatio: "xMidYMax slice"
260
+ preserveAspectRatio: "xMidYMax meet"
261
261
  },
262
262
  /* @__PURE__ */ import_react2.default.createElement(
263
263
  Liquid,
@@ -310,59 +310,73 @@ var import_react3 = __toESM(require("react"));
310
310
  function BrandySnifterGlass({
311
311
  liquidFill = ["#F6D29A", "#D98F3A"],
312
312
  strokeWidth = 1,
313
+ size = 80,
313
314
  idBase = "BrandySnifterGlassGrad"
314
315
  }) {
315
- return /* @__PURE__ */ import_react3.default.createElement("svg", { viewBox: "0 0 64 64", preserveAspectRatio: "xMidYMax slice" }, /* @__PURE__ */ import_react3.default.createElement(
316
- Liquid,
316
+ return /* @__PURE__ */ import_react3.default.createElement(
317
+ "svg",
317
318
  {
318
- d: `M22 28
319
+ width: size,
320
+ height: size,
321
+ viewBox: "0 0 64 64",
322
+ preserveAspectRatio: "xMidYMax meet"
323
+ },
324
+ /* @__PURE__ */ import_react3.default.createElement(
325
+ Liquid,
326
+ {
327
+ d: `M22 28
319
328
  L42 28
320
329
  L44 48
321
330
  Q32 52 20 48
322
331
  Z`,
323
- transform: "scale(0.98)",
324
- idBase,
325
- opacity: 0.7,
326
- liquidFill
327
- }
328
- ), /* @__PURE__ */ import_react3.default.createElement(
329
- "path",
330
- {
331
- d: "\n M22 28 \n L42 28 \n L44 48 \n Q32 52 20 48 \n Z\n ",
332
- fill: "none",
333
- stroke: "currentColor",
334
- strokeWidth
335
- }
336
- ), /* @__PURE__ */ import_react3.default.createElement(
337
- "line",
338
- {
339
- x1: 22,
340
- y1: 28,
341
- x2: 42,
342
- y2: 28,
343
- stroke: "currentColor",
344
- strokeWidth
345
- }
346
- ), /* @__PURE__ */ import_react3.default.createElement(
347
- "rect",
348
- {
349
- x: 30,
350
- y: 50,
351
- width: 4,
352
- height: 5,
353
- fill: "currentColor",
354
- stroke: "currentColor",
355
- strokeWidth
356
- }
357
- ), /* @__PURE__ */ import_react3.default.createElement(
358
- "path",
359
- {
360
- d: "M24 55 Q32 54 40 55 L40 55 L24 55 Z",
361
- fill: "currentColor",
362
- stroke: "currentColor",
363
- strokeWidth
364
- }
365
- ));
332
+ transform: "scale(0.98)",
333
+ idBase,
334
+ opacity: 0.7,
335
+ liquidFill
336
+ }
337
+ ),
338
+ /* @__PURE__ */ import_react3.default.createElement(
339
+ "path",
340
+ {
341
+ d: "\n M22 28 \n L42 28 \n L44 48 \n Q32 52 20 48 \n Z\n ",
342
+ fill: "none",
343
+ stroke: "currentColor",
344
+ strokeWidth
345
+ }
346
+ ),
347
+ /* @__PURE__ */ import_react3.default.createElement(
348
+ "line",
349
+ {
350
+ x1: 22,
351
+ y1: 28,
352
+ x2: 42,
353
+ y2: 28,
354
+ stroke: "currentColor",
355
+ strokeWidth
356
+ }
357
+ ),
358
+ /* @__PURE__ */ import_react3.default.createElement(
359
+ "rect",
360
+ {
361
+ x: 30,
362
+ y: 50,
363
+ width: 4,
364
+ height: 5,
365
+ fill: "currentColor",
366
+ stroke: "currentColor",
367
+ strokeWidth
368
+ }
369
+ ),
370
+ /* @__PURE__ */ import_react3.default.createElement(
371
+ "path",
372
+ {
373
+ d: "M24 55 Q32 54 40 55 L40 55 L24 55 Z",
374
+ fill: "currentColor",
375
+ stroke: "currentColor",
376
+ strokeWidth
377
+ }
378
+ )
379
+ );
366
380
  }
367
381
 
368
382
  // src/components/glasses/CollinsGlass.jsx
@@ -370,59 +384,73 @@ var import_react4 = __toESM(require("react"));
370
384
  function CollinsGlass({
371
385
  liquidFill = ["#FFF7C0", "#FFD27A"],
372
386
  strokeWidth = 0.5,
387
+ size = 80,
373
388
  idBase = "CollinsGlassGrad"
374
389
  }) {
375
- return /* @__PURE__ */ import_react4.default.createElement("svg", { viewBox: "0 0 64 64", preserveAspectRatio: "xMidYMax slice" }, /* @__PURE__ */ import_react4.default.createElement(
376
- Liquid,
377
- {
378
- d: `M22 10 L42 10 L42 54 L22 54 Z`,
379
- transform: "scale(0.98)",
380
- idBase,
381
- opacity: 0.7,
382
- liquidFill
383
- }
384
- ), /* @__PURE__ */ import_react4.default.createElement(
385
- "line",
386
- {
387
- x1: 22,
388
- y1: 10,
389
- x2: 22,
390
- y2: 54,
391
- stroke: "currentColor",
392
- strokeWidth
393
- }
394
- ), /* @__PURE__ */ import_react4.default.createElement(
395
- "line",
396
- {
397
- x1: 42,
398
- y1: 10,
399
- x2: 42,
400
- y2: 54,
401
- stroke: "currentColor",
402
- strokeWidth
403
- }
404
- ), /* @__PURE__ */ import_react4.default.createElement(
405
- "line",
406
- {
407
- x1: 21.76,
408
- y1: 10,
409
- x2: 42.24,
410
- y2: 10,
411
- stroke: "currentColor",
412
- strokeWidth
413
- }
414
- ), /* @__PURE__ */ import_react4.default.createElement(
415
- "rect",
390
+ return /* @__PURE__ */ import_react4.default.createElement(
391
+ "svg",
416
392
  {
417
- x: 22,
418
- y: 54,
419
- width: 20,
420
- height: 2,
421
- fill: "currentColor",
422
- stroke: "currentColor",
423
- strokeWidth
424
- }
425
- ));
393
+ width: size,
394
+ height: size,
395
+ viewBox: "0 0 64 64",
396
+ preserveAspectRatio: "xMidYMax meet"
397
+ },
398
+ /* @__PURE__ */ import_react4.default.createElement(
399
+ Liquid,
400
+ {
401
+ d: `M22 10 L42 10 L42 54 L22 54 Z`,
402
+ transform: "scale(0.98)",
403
+ idBase,
404
+ opacity: 0.7,
405
+ liquidFill
406
+ }
407
+ ),
408
+ /* @__PURE__ */ import_react4.default.createElement(
409
+ "line",
410
+ {
411
+ x1: 22,
412
+ y1: 10,
413
+ x2: 22,
414
+ y2: 54,
415
+ stroke: "currentColor",
416
+ strokeWidth
417
+ }
418
+ ),
419
+ /* @__PURE__ */ import_react4.default.createElement(
420
+ "line",
421
+ {
422
+ x1: 42,
423
+ y1: 10,
424
+ x2: 42,
425
+ y2: 54,
426
+ stroke: "currentColor",
427
+ strokeWidth
428
+ }
429
+ ),
430
+ /* @__PURE__ */ import_react4.default.createElement(
431
+ "line",
432
+ {
433
+ x1: 21.76,
434
+ y1: 10,
435
+ x2: 42.24,
436
+ y2: 10,
437
+ stroke: "currentColor",
438
+ strokeWidth
439
+ }
440
+ ),
441
+ /* @__PURE__ */ import_react4.default.createElement(
442
+ "rect",
443
+ {
444
+ x: 22,
445
+ y: 54,
446
+ width: 20,
447
+ height: 2,
448
+ fill: "currentColor",
449
+ stroke: "currentColor",
450
+ strokeWidth
451
+ }
452
+ )
453
+ );
426
454
  }
427
455
 
428
456
  // src/components/glasses/CopperMug.jsx
@@ -438,7 +466,7 @@ function CopperMug({
438
466
  width: size,
439
467
  height: size,
440
468
  viewBox: "0 0 64 64",
441
- preserveAspectRatio: "xMidYMax slice"
469
+ preserveAspectRatio: "xMidYMax meet"
442
470
  },
443
471
  /* @__PURE__ */ import_react5.default.createElement(
444
472
  "path",
@@ -502,51 +530,65 @@ try {
502
530
  function CordialGlass({
503
531
  liquidFill = null,
504
532
  strokeWidth = 0.5,
533
+ size = 80,
505
534
  idBase = "CordialGlassGrad"
506
535
  }) {
507
- return /* @__PURE__ */ import_react6.default.createElement("svg", { viewBox: "0 0 64 64", preserveAspectRatio: "xMidYMax slice" }, /* @__PURE__ */ import_react6.default.createElement(
508
- Liquid,
509
- {
510
- d: `M30 16 L35 16 Q34 25 31 26 Q30 26 28 16 Z`,
511
- transform: "scale(0.98)",
512
- idBase,
513
- opacity: 0.7,
514
- liquidFill
515
- }
516
- ), /* @__PURE__ */ import_react6.default.createElement(
517
- "path",
518
- {
519
- d: "M28 16 L36 16 Q34 26 32 26 Q30 26 28 16 Z",
520
- stroke: "currentColor",
521
- strokeWidth,
522
- fill: "none"
523
- }
524
- ), /* @__PURE__ */ import_react6.default.createElement(
525
- "rect",
526
- {
527
- x: 31.8,
528
- y: 26,
529
- width: 0.5,
530
- height: 6,
531
- fill: "currentColor",
532
- stroke: "currentColor",
533
- strokeWidth
534
- }
535
- ), /* @__PURE__ */ import_react6.default.createElement(
536
- "path",
537
- {
538
- d: "M28.5 17 L35.5 17 Q34 25 32 25 Q30 25 28.5 17 Z",
539
- fill: "rgba(255,255,255,0.06)"
540
- }
541
- ), /* @__PURE__ */ import_react6.default.createElement(
542
- "path",
536
+ return /* @__PURE__ */ import_react6.default.createElement(
537
+ "svg",
543
538
  {
544
- d: "M28 32 Q32 31 36 32 L36 32 L28 32 Z",
545
- fill: "currentColor",
546
- stroke: "currentColor",
547
- strokeWidth
548
- }
549
- ));
539
+ width: size,
540
+ height: size,
541
+ viewBox: "0 0 64 64",
542
+ preserveAspectRatio: "xMidYMax meet"
543
+ },
544
+ /* @__PURE__ */ import_react6.default.createElement(
545
+ Liquid,
546
+ {
547
+ d: `M30 16 L35 16 Q34 25 31 26 Q30 26 28 16 Z`,
548
+ transform: "scale(0.98)",
549
+ idBase,
550
+ opacity: 0.7,
551
+ liquidFill
552
+ }
553
+ ),
554
+ /* @__PURE__ */ import_react6.default.createElement(
555
+ "path",
556
+ {
557
+ d: "M28 16 L36 16 Q34 26 32 26 Q30 26 28 16 Z",
558
+ stroke: "currentColor",
559
+ strokeWidth,
560
+ fill: "none"
561
+ }
562
+ ),
563
+ /* @__PURE__ */ import_react6.default.createElement(
564
+ "rect",
565
+ {
566
+ x: 31.8,
567
+ y: 26,
568
+ width: 0.5,
569
+ height: 6,
570
+ fill: "currentColor",
571
+ stroke: "currentColor",
572
+ strokeWidth
573
+ }
574
+ ),
575
+ /* @__PURE__ */ import_react6.default.createElement(
576
+ "path",
577
+ {
578
+ d: "M28.5 17 L35.5 17 Q34 25 32 25 Q30 25 28.5 17 Z",
579
+ fill: "rgba(255,255,255,0.06)"
580
+ }
581
+ ),
582
+ /* @__PURE__ */ import_react6.default.createElement(
583
+ "path",
584
+ {
585
+ d: "M28 32 Q32 31 36 32 L36 32 L28 32 Z",
586
+ fill: "currentColor",
587
+ stroke: "currentColor",
588
+ strokeWidth
589
+ }
590
+ )
591
+ );
550
592
  }
551
593
 
552
594
  // src/components/glasses/CoupeGlass.jsx
@@ -563,7 +605,7 @@ function CoupeGlass({
563
605
  width: size,
564
606
  height: size,
565
607
  viewBox: "0 0 64 64",
566
- preserveAspectRatio: "xMidYMax slice"
608
+ preserveAspectRatio: "xMidYMax meet"
567
609
  },
568
610
  /* @__PURE__ */ import_react7.default.createElement(
569
611
  Liquid,
@@ -613,7 +655,7 @@ function DemitasseGlass({
613
655
  width: size,
614
656
  height: size,
615
657
  viewBox: "0 0 64 64",
616
- preserveAspectRatio: "xMidYMax slice"
658
+ preserveAspectRatio: "xMidYMax meet"
617
659
  },
618
660
  /* @__PURE__ */ import_react8.default.createElement(
619
661
  "path",
@@ -670,7 +712,7 @@ function DoubleShotGlass({
670
712
  width: size,
671
713
  height: size,
672
714
  viewBox: "0 0 64 64",
673
- preserveAspectRatio: "xMidYMax slice"
715
+ preserveAspectRatio: "xMidYMax meet"
674
716
  },
675
717
  /* @__PURE__ */ import_react9.default.createElement(
676
718
  "path",
@@ -720,7 +762,7 @@ function FizzGlass({
720
762
  width: size,
721
763
  height: size,
722
764
  viewBox: "0 0 64 64",
723
- preserveAspectRatio: "xMidYMax slice"
765
+ preserveAspectRatio: "xMidYMax meet"
724
766
  },
725
767
  /* @__PURE__ */ import_react10.default.createElement("path", { d: "M22 10 L42 10", stroke: "currentColor", strokeWidth }),
726
768
  /* @__PURE__ */ import_react10.default.createElement(
@@ -782,7 +824,7 @@ function FluteGlass({
782
824
  width: size,
783
825
  height: size,
784
826
  viewBox: "0 0 64 64",
785
- preserveAspectRatio: "xMidYMax slice"
827
+ preserveAspectRatio: "xMidYMax meet"
786
828
  },
787
829
  /* @__PURE__ */ import_react11.default.createElement(
788
830
  Liquid,
@@ -848,7 +890,7 @@ function GobletGlass({
848
890
  width: size,
849
891
  height,
850
892
  viewBox: "0 0 64 90",
851
- preserveAspectRatio: "xMidYMax slice"
893
+ preserveAspectRatio: "xMidYMax meet"
852
894
  },
853
895
  /* @__PURE__ */ import_react12.default.createElement(
854
896
  "rect",
@@ -918,7 +960,7 @@ function HighballGlass({
918
960
  width: size,
919
961
  height: size,
920
962
  viewBox: "0 0 64 64",
921
- preserveAspectRatio: "xMidYMax slice"
963
+ preserveAspectRatio: "xMidYMax meet"
922
964
  },
923
965
  /* @__PURE__ */ import_react13.default.createElement(
924
966
  Liquid,
@@ -972,7 +1014,7 @@ function HurricaneGlass({
972
1014
  width: size,
973
1015
  height: size,
974
1016
  viewBox: "0 0 64 64",
975
- preserveAspectRatio: "xMidYMax slice"
1017
+ preserveAspectRatio: "xMidYMax meet"
976
1018
  },
977
1019
  /* @__PURE__ */ import_react14.default.createElement(
978
1020
  Liquid,
@@ -1031,7 +1073,7 @@ function IrishCoffeeGlass({
1031
1073
  width: size,
1032
1074
  height: size,
1033
1075
  viewBox: "0 0 64 64",
1034
- preserveAspectRatio: "xMidYMax slice"
1076
+ preserveAspectRatio: "xMidYMax meet"
1035
1077
  },
1036
1078
  /* @__PURE__ */ import_react15.default.createElement(
1037
1079
  "path",
@@ -1105,7 +1147,7 @@ function JulepCup({
1105
1147
  width: size,
1106
1148
  height: size,
1107
1149
  viewBox: "0 0 64 64",
1108
- preserveAspectRatio: "xMidYMax slice"
1150
+ preserveAspectRatio: "xMidYMax meet"
1109
1151
  },
1110
1152
  /* @__PURE__ */ import_react16.default.createElement(
1111
1153
  "rect",
@@ -1223,7 +1265,7 @@ function MargaritaGlass({
1223
1265
  width: size,
1224
1266
  height: size,
1225
1267
  viewBox: "0 0 64 64",
1226
- preserveAspectRatio: "xMidYMax slice"
1268
+ preserveAspectRatio: "xMidYMax meet"
1227
1269
  },
1228
1270
  /* @__PURE__ */ import_react17.default.createElement(
1229
1271
  Liquid,
@@ -1283,7 +1325,7 @@ function MartiniGlass({
1283
1325
  width: size,
1284
1326
  height: size,
1285
1327
  viewBox: "0 0 64 64",
1286
- preserveAspectRatio: "xMidYMax slice"
1328
+ preserveAspectRatio: "xMidYMax meet"
1287
1329
  },
1288
1330
  /* @__PURE__ */ import_react18.default.createElement(
1289
1331
  Liquid,
@@ -1324,7 +1366,7 @@ function NickAndNoraGlass({
1324
1366
  width: size,
1325
1367
  height: size,
1326
1368
  viewBox: "0 0 64 64",
1327
- preserveAspectRatio: "xMidYMax slice"
1369
+ preserveAspectRatio: "xMidYMax meet"
1328
1370
  },
1329
1371
  /* @__PURE__ */ import_react19.default.createElement(
1330
1372
  Liquid,
@@ -1383,7 +1425,7 @@ function ParfaitGlass({
1383
1425
  width: size,
1384
1426
  height: size,
1385
1427
  viewBox: "0 0 64 64",
1386
- preserveAspectRatio: "xMidYMax slice"
1428
+ preserveAspectRatio: "xMidYMax meet"
1387
1429
  },
1388
1430
  /* @__PURE__ */ import_react20.default.createElement(
1389
1431
  Liquid,
@@ -1436,7 +1478,7 @@ function PilsnerGlass({
1436
1478
  width: size,
1437
1479
  height: size,
1438
1480
  viewBox: "0 0 64 64",
1439
- preserveAspectRatio: "xMidYMax slice"
1481
+ preserveAspectRatio: "xMidYMax meet"
1440
1482
  },
1441
1483
  /* @__PURE__ */ import_react21.default.createElement(
1442
1484
  Liquid,
@@ -1484,7 +1526,7 @@ function PintGlass({
1484
1526
  width: size,
1485
1527
  height: size,
1486
1528
  viewBox: "0 0 64 64",
1487
- preserveAspectRatio: "xMidYMax slice"
1529
+ preserveAspectRatio: "xMidYMax meet"
1488
1530
  },
1489
1531
  /* @__PURE__ */ import_react22.default.createElement(
1490
1532
  Liquid,
@@ -1536,7 +1578,7 @@ function PousseCafeGlass({
1536
1578
  width: size,
1537
1579
  height,
1538
1580
  viewBox: "0 0 64 90",
1539
- preserveAspectRatio: "xMidYMax slice"
1581
+ preserveAspectRatio: "xMidYMax meet"
1540
1582
  },
1541
1583
  /* @__PURE__ */ import_react23.default.createElement("g", null, /* @__PURE__ */ import_react23.default.createElement(
1542
1584
  Liquid,
@@ -1616,7 +1658,7 @@ function PunchGlass({
1616
1658
  width: size,
1617
1659
  height: size,
1618
1660
  viewBox: "0 0 64 64",
1619
- preserveAspectRatio: "xMidYMax slice"
1661
+ preserveAspectRatio: "xMidYMax meet"
1620
1662
  },
1621
1663
  /* @__PURE__ */ import_react24.default.createElement("g", null, /* @__PURE__ */ import_react24.default.createElement(
1622
1664
  Liquid,
@@ -1695,7 +1737,7 @@ function RocksGlass({
1695
1737
  width: size,
1696
1738
  height: size,
1697
1739
  viewBox: "0 0 64 64",
1698
- preserveAspectRatio: "xMidYMax slice"
1740
+ preserveAspectRatio: "xMidYMax meet"
1699
1741
  },
1700
1742
  /* @__PURE__ */ import_react25.default.createElement(
1701
1743
  Liquid,
@@ -1747,7 +1789,7 @@ function SingleShotGlass({
1747
1789
  width: size,
1748
1790
  height: size,
1749
1791
  viewBox: "0 0 64 64",
1750
- preserveAspectRatio: "xMidYMax slice"
1792
+ preserveAspectRatio: "xMidYMax meet"
1751
1793
  },
1752
1794
  /* @__PURE__ */ import_react26.default.createElement(
1753
1795
  "path",
@@ -1797,7 +1839,7 @@ function SlingGlass({
1797
1839
  width: size,
1798
1840
  height: size,
1799
1841
  viewBox: "0 0 64 64",
1800
- preserveAspectRatio: "xMidYMax slice"
1842
+ preserveAspectRatio: "xMidYMax meet"
1801
1843
  },
1802
1844
  /* @__PURE__ */ import_react27.default.createElement(
1803
1845
  "line",
@@ -1857,7 +1899,7 @@ function SnifterGlass({
1857
1899
  width: size,
1858
1900
  height: size,
1859
1901
  viewBox: "0 0 64 64",
1860
- preserveAspectRatio: "xMidYMax slice"
1902
+ preserveAspectRatio: "xMidYMax meet"
1861
1903
  },
1862
1904
  /* @__PURE__ */ import_react28.default.createElement(
1863
1905
  "line",
@@ -1927,7 +1969,7 @@ function SourGlass({
1927
1969
  width: size,
1928
1970
  height: size,
1929
1971
  viewBox: "0 0 64 64",
1930
- preserveAspectRatio: "xMidYMax slice"
1972
+ preserveAspectRatio: "xMidYMax meet"
1931
1973
  },
1932
1974
  /* @__PURE__ */ import_react29.default.createElement(
1933
1975
  "line",
@@ -1990,7 +2032,7 @@ function TankardGlass({
1990
2032
  width: size,
1991
2033
  height: size,
1992
2034
  viewBox: "0 0 64 64",
1993
- preserveAspectRatio: "xMidYMax slice"
2035
+ preserveAspectRatio: "xMidYMax meet"
1994
2036
  },
1995
2037
  /* @__PURE__ */ import_react30.default.createElement("rect", { x: 13, y: 44, width: 36, height: 4, fill: "currentColor" }),
1996
2038
  /* @__PURE__ */ import_react30.default.createElement(
@@ -2043,7 +2085,7 @@ function TikiGlass({
2043
2085
  width: size,
2044
2086
  height: size,
2045
2087
  viewBox: "0 0 64 64",
2046
- preserveAspectRatio: "xMidYMax slice"
2088
+ preserveAspectRatio: "xMidYMax meet"
2047
2089
  },
2048
2090
  /* @__PURE__ */ import_react31.default.createElement("rect", { x: 21.75, y: 52, width: 20.5, height: 2, fill: "currentColor" }),
2049
2091
  /* @__PURE__ */ import_react31.default.createElement(
@@ -2099,7 +2141,7 @@ function ToddyGlass({
2099
2141
  width: size,
2100
2142
  height: size,
2101
2143
  viewBox: "0 0 64 64",
2102
- preserveAspectRatio: "xMidYMax slice"
2144
+ preserveAspectRatio: "xMidYMax meet"
2103
2145
  },
2104
2146
  /* @__PURE__ */ import_react32.default.createElement(
2105
2147
  Liquid,
@@ -2153,15 +2195,15 @@ function WhiskeyShotGlass({
2153
2195
  width: size,
2154
2196
  height: size,
2155
2197
  viewBox: "0 0 64 64",
2156
- preserveAspectRatio: "xMidYMax slice"
2198
+ preserveAspectRatio: "xMidYMax meet"
2157
2199
  },
2158
2200
  /* @__PURE__ */ import_react33.default.createElement(
2159
2201
  "rect",
2160
2202
  {
2161
- x: 22,
2203
+ x: 18,
2162
2204
  y: 30,
2163
- width: 20,
2164
- height: 18,
2205
+ width: 30,
2206
+ height: 24,
2165
2207
  stroke: "currentColor",
2166
2208
  fill: "none",
2167
2209
  strokeWidth
@@ -2170,7 +2212,7 @@ function WhiskeyShotGlass({
2170
2212
  /* @__PURE__ */ import_react33.default.createElement(
2171
2213
  Liquid,
2172
2214
  {
2173
- d: `M22 30 L42 30 L42 48 L22 48 Z`,
2215
+ d: `M18 30 L48 30 L48 54 L18 54 Z`,
2174
2216
  transform: "scale(0.98)",
2175
2217
  idBase,
2176
2218
  opacity: 0.7,
@@ -2181,9 +2223,9 @@ function WhiskeyShotGlass({
2181
2223
  /* @__PURE__ */ import_react33.default.createElement(
2182
2224
  "rect",
2183
2225
  {
2184
- x: 22,
2185
- y: 48,
2186
- width: 20,
2226
+ x: 18,
2227
+ y: 54,
2228
+ width: 30,
2187
2229
  height: 3,
2188
2230
  fill: "none",
2189
2231
  stroke: "currentColor",
@@ -2201,14 +2243,13 @@ function WineGlass({
2201
2243
  strokeWidth = 0.5,
2202
2244
  idBase = "WineGlassGrad"
2203
2245
  }) {
2204
- const height = Math.round(size * 90 / 80);
2205
2246
  return /* @__PURE__ */ import_react34.default.createElement(
2206
2247
  "svg",
2207
2248
  {
2208
2249
  width: size,
2209
- height,
2250
+ height: size,
2210
2251
  viewBox: "0 0 64 90",
2211
- preserveAspectRatio: "xMidYMax slice"
2252
+ preserveAspectRatio: "xMidYMax meet"
2212
2253
  },
2213
2254
  /* @__PURE__ */ import_react34.default.createElement(
2214
2255
  Liquid,
package/dist/index.mjs CHANGED
@@ -1,16 +1,16 @@
1
- import C from"react";function e({d:t,transform:o,liquidFill:r=null,liquidStyle:i=null,gradientAttr:a=null,opacity:tr=.7,idBase:Nr="liquidGrad",highlight:Pr=null,highlightColor:Er="#fff7c0",level:Ir=1,stopPositions:er=null,mixed:I=!1,mixedBlend:jr=.25,mixedOpacity:Jr=.85}){let j=!1,f=null;if(typeof a=="string"){let s=a.trim();if(s.startsWith("#"))j=!0;else if(s.startsWith("["))try{f=JSON.parse(s)}catch{f=null}else f=[s]}else Array.isArray(a)&&(f=a);(!f||!f.length)&&(r?f=Array.isArray(r)?r:[r]:f=["#93d3d8"]);let h=Pr==="liquid"||Pr==="all"?[Er,...f]:[...f],J;if(Array.isArray(er)&&er.length===h.length)J=er.map(s=>{let l=Number(s)||0;return Math.round(Math.max(0,Math.min(1,l))*100)});else{let s=Math.max(0,Math.min(1,Number(Ir)||0)),l=1-s;h.length===1?J=[100]:J=h.map((n,d)=>{let u=d/Math.max(1,h.length-1);return Math.round((l+u*s)*100)})}let ir=Nr;function lr(s){if(!s)return[0,0,0];let l=String(s).trim();l[0]==="#"&&(l=l.slice(1)),l.length===3&&(l=l.split("").map(d=>d+d).join(""));let n=parseInt(l,16);return[n>>16&255,n>>8&255,n&255]}function Vr(s,l,n){s/=255,l/=255,n/=255;let d=Math.max(s,l,n),u=Math.min(s,l,n),p=0,O=0,_=(d+u)/2;if(d!==u){let q=d-u;switch(O=_>.5?q/(2-d-u):q/(d+u),d){case s:p=(l-n)/q+(l<n?6:0);break;case l:p=(n-s)/q+2;break;case n:p=(s-l)/q+4;break}p/=6}return[p,O,_]}function Or([s,l,n]){return"#"+[s,l,n].map(d=>{let u=Math.round(Math.max(0,Math.min(255,d))).toString(16);return u.length===1?"0"+u:u}).join("")}function _r(s,l,n){let d=lr(s),u=lr(l),p=Math.round(d[0]*(1-n)+u[0]*n),O=Math.round(d[1]*(1-n)+u[1]*n),_=Math.round(d[2]*(1-n)+u[2]*n);return Or([p,O,_])}let V=null,S=null;if(I&&!j)try{let s=null,l=-1;for(let n of h){let d=lr(n),[,u]=Vr(d[0],d[1],d[2]);u>l&&(l=u,s=n)}V=s||h[0],S=h.map(n=>_r(V,n,Math.max(0,Math.min(1,jr))))}catch{V=h[0],S=h.slice()}return C.createElement(C.Fragment,null,!j&&C.createElement("defs",null,C.createElement("linearGradient",{id:ir,x1:"0",y1:"0",x2:"0",y2:"1"},(I&&S?S:h).map((s,l)=>C.createElement("stop",{key:l,offset:`${J[l]}%`,stopColor:s,stopOpacity:I&&S?Jr:1})))),C.createElement("path",{d:t,transform:o,className:"liquid",style:i||void 0,fill:i?void 0:j?`url(${a})`:I&&V?`url(#${ir})`:`url(#${ir})`,opacity:tr}))}import F from"react";function sr({liquidFill:t=["#A8E6CF","#DCEDC2","#FFD3B6"],size:o=80,strokeWidth:r=.5,idBase:i="AbsintheGlassGrad"}){let a=Math.floor(o*1.125);return F.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax slice"},F.createElement(e,{d:`M20 35 L44 35 L42 49 Q32 52 22 49 Z
2
- M26 50 Q32 50 38 50 L36 60 L28 60 Z`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),F.createElement("path",{d:`M20 35 L44 35 L42 49 Q32 52 22 49 Z
3
- M26 50 Q32 50 38 50 L36 60 L28 60 Z`,stroke:"currentColor",strokeWidth:r,fill:"none"}),F.createElement("rect",{x:31,y:60,width:2,height:16,fill:"black",stroke:"currentColor",strokeWidth:r}),F.createElement("path",{d:" M24 77 Q32 76 40 77 L40 77 L24 77 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r,rx:r}))}import L from"react";function nr({liquidFill:t=["#F6D29A","#D98F3A"],strokeWidth:o=1,idBase:r="BrandySnifterGlassGrad"}){return L.createElement("svg",{viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},L.createElement(e,{d:`M22 28
1
+ import C from"react";function i({d:t,transform:o,liquidFill:r=null,liquidStyle:e=null,gradientAttr:a=null,opacity:tr=.7,idBase:Nr="liquidGrad",highlight:Pr=null,highlightColor:Er="#fff7c0",level:Ir=1,stopPositions:er=null,mixed:I=!1,mixedBlend:jr=.25,mixedOpacity:Jr=.85}){let j=!1,m=null;if(typeof a=="string"){let s=a.trim();if(s.startsWith("#"))j=!0;else if(s.startsWith("["))try{m=JSON.parse(s)}catch{m=null}else m=[s]}else Array.isArray(a)&&(m=a);(!m||!m.length)&&(r?m=Array.isArray(r)?r:[r]:m=["#93d3d8"]);let f=Pr==="liquid"||Pr==="all"?[Er,...m]:[...m],J;if(Array.isArray(er)&&er.length===f.length)J=er.map(s=>{let l=Number(s)||0;return Math.round(Math.max(0,Math.min(1,l))*100)});else{let s=Math.max(0,Math.min(1,Number(Ir)||0)),l=1-s;f.length===1?J=[100]:J=f.map((n,d)=>{let u=d/Math.max(1,f.length-1);return Math.round((l+u*s)*100)})}let ir=Nr;function lr(s){if(!s)return[0,0,0];let l=String(s).trim();l[0]==="#"&&(l=l.slice(1)),l.length===3&&(l=l.split("").map(d=>d+d).join(""));let n=parseInt(l,16);return[n>>16&255,n>>8&255,n&255]}function Vr(s,l,n){s/=255,l/=255,n/=255;let d=Math.max(s,l,n),u=Math.min(s,l,n),p=0,O=0,_=(d+u)/2;if(d!==u){let q=d-u;switch(O=_>.5?q/(2-d-u):q/(d+u),d){case s:p=(l-n)/q+(l<n?6:0);break;case l:p=(n-s)/q+2;break;case n:p=(s-l)/q+4;break}p/=6}return[p,O,_]}function Or([s,l,n]){return"#"+[s,l,n].map(d=>{let u=Math.round(Math.max(0,Math.min(255,d))).toString(16);return u.length===1?"0"+u:u}).join("")}function _r(s,l,n){let d=lr(s),u=lr(l),p=Math.round(d[0]*(1-n)+u[0]*n),O=Math.round(d[1]*(1-n)+u[1]*n),_=Math.round(d[2]*(1-n)+u[2]*n);return Or([p,O,_])}let V=null,S=null;if(I&&!j)try{let s=null,l=-1;for(let n of f){let d=lr(n),[,u]=Vr(d[0],d[1],d[2]);u>l&&(l=u,s=n)}V=s||f[0],S=f.map(n=>_r(V,n,Math.max(0,Math.min(1,jr))))}catch{V=f[0],S=f.slice()}return C.createElement(C.Fragment,null,!j&&C.createElement("defs",null,C.createElement("linearGradient",{id:ir,x1:"0",y1:"0",x2:"0",y2:"1"},(I&&S?S:f).map((s,l)=>C.createElement("stop",{key:l,offset:`${J[l]}%`,stopColor:s,stopOpacity:I&&S?Jr:1})))),C.createElement("path",{d:t,transform:o,className:"liquid",style:e||void 0,fill:e?void 0:j?`url(${a})`:I&&V?`url(#${ir})`:`url(#${ir})`,opacity:tr}))}import F from"react";function sr({liquidFill:t=["#A8E6CF","#DCEDC2","#FFD3B6"],size:o=80,strokeWidth:r=.5,idBase:e="AbsintheGlassGrad"}){let a=Math.floor(o*1.125);return F.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax meet"},F.createElement(i,{d:`M20 35 L44 35 L42 49 Q32 52 22 49 Z
2
+ M26 50 Q32 50 38 50 L36 60 L28 60 Z`,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),F.createElement("path",{d:`M20 35 L44 35 L42 49 Q32 52 22 49 Z
3
+ M26 50 Q32 50 38 50 L36 60 L28 60 Z`,stroke:"currentColor",strokeWidth:r,fill:"none"}),F.createElement("rect",{x:31,y:60,width:2,height:16,fill:"black",stroke:"currentColor",strokeWidth:r}),F.createElement("path",{d:" M24 77 Q32 76 40 77 L40 77 L24 77 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r,rx:r}))}import L from"react";function nr({liquidFill:t=["#F6D29A","#D98F3A"],strokeWidth:o=1,size:r=80,idBase:e="BrandySnifterGlassGrad"}){return L.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},L.createElement(i,{d:`M22 28
4
4
  L42 28
5
5
  L44 48
6
6
  Q32 52 20 48
7
- Z`,transform:"scale(0.98)",idBase:r,opacity:.7,liquidFill:t}),L.createElement("path",{d:`
7
+ Z`,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),L.createElement("path",{d:`
8
8
  M22 28
9
9
  L42 28
10
10
  L44 48
11
11
  Q32 52 20 48
12
12
  Z
13
- `,fill:"none",stroke:"currentColor",strokeWidth:o}),L.createElement("line",{x1:22,y1:28,x2:42,y2:28,stroke:"currentColor",strokeWidth:o}),L.createElement("rect",{x:30,y:50,width:4,height:5,fill:"currentColor",stroke:"currentColor",strokeWidth:o}),L.createElement("path",{d:"M24 55 Q32 54 40 55 L40 55 L24 55 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import M from"react";function ar({liquidFill:t=["#FFF7C0","#FFD27A"],strokeWidth:o=.5,idBase:r="CollinsGlassGrad"}){return M.createElement("svg",{viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},M.createElement(e,{d:"M22 10 L42 10 L42 54 L22 54 Z",transform:"scale(0.98)",idBase:r,opacity:.7,liquidFill:t}),M.createElement("line",{x1:22,y1:10,x2:22,y2:54,stroke:"currentColor",strokeWidth:o}),M.createElement("line",{x1:42,y1:10,x2:42,y2:54,stroke:"currentColor",strokeWidth:o}),M.createElement("line",{x1:21.76,y1:10,x2:42.24,y2:10,stroke:"currentColor",strokeWidth:o}),M.createElement("rect",{x:22,y:54,width:20,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import A from"react";function dr({size:t=80,strokeWidth:o=.5,fill:r="#B87333"}){return A.createElement("svg",{width:t,height:t,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},A.createElement("path",{d:"M47 23 C68 23 68 52 46.5 50",fill:"none",stroke:r,strokeWidth:o+2}),A.createElement("path",{d:`
13
+ `,fill:"none",stroke:"currentColor",strokeWidth:o}),L.createElement("line",{x1:22,y1:28,x2:42,y2:28,stroke:"currentColor",strokeWidth:o}),L.createElement("rect",{x:30,y:50,width:4,height:5,fill:"currentColor",stroke:"currentColor",strokeWidth:o}),L.createElement("path",{d:"M24 55 Q32 54 40 55 L40 55 L24 55 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import M from"react";function ar({liquidFill:t=["#FFF7C0","#FFD27A"],strokeWidth:o=.5,size:r=80,idBase:e="CollinsGlassGrad"}){return M.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},M.createElement(i,{d:"M22 10 L42 10 L42 54 L22 54 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),M.createElement("line",{x1:22,y1:10,x2:22,y2:54,stroke:"currentColor",strokeWidth:o}),M.createElement("line",{x1:42,y1:10,x2:42,y2:54,stroke:"currentColor",strokeWidth:o}),M.createElement("line",{x1:21.76,y1:10,x2:42.24,y2:10,stroke:"currentColor",strokeWidth:o}),M.createElement("rect",{x:22,y:54,width:20,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import A from"react";function dr({size:t=80,strokeWidth:o=.5,fill:r="#B87333"}){return A.createElement("svg",{width:t,height:t,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},A.createElement("path",{d:"M47 23 C68 23 68 52 46.5 50",fill:"none",stroke:r,strokeWidth:o+2}),A.createElement("path",{d:`
14
14
  M18 16
15
15
  L46 16
16
16
  C48 24 48 40 46 56
@@ -24,65 +24,65 @@ import C from"react";function e({d:t,transform:o,liquidFill:r=null,liquidStyle:i
24
24
  L18 56
25
25
  C16 40 16 24 18 16
26
26
  Z
27
- `,fill:"none",stroke:r,strokeWidth:o}),A.createElement("line",{x1:18,y1:16,x2:46,y2:16,stroke:r,strokeWidth:o}))}import k from"react";var Kr={colors:{accent:{200:"#ffd180",500:"#e67e22"},warning:"#ffb300",success:"#4caf50",error:"#e53935",dark:{400:"#616161",700:"#212121",900:"#121212"}}};try{global.theme=Kr}catch{}function ur({liquidFill:t=null,strokeWidth:o=.5,idBase:r="CordialGlassGrad"}){return k.createElement("svg",{viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},k.createElement(e,{d:"M30 16 L35 16 Q34 25 31 26 Q30 26 28 16 Z",transform:"scale(0.98)",idBase:r,opacity:.7,liquidFill:t}),k.createElement("path",{d:"M28 16 L36 16 Q34 26 32 26 Q30 26 28 16 Z",stroke:"currentColor",strokeWidth:o,fill:"none"}),k.createElement("rect",{x:31.8,y:26,width:.5,height:6,fill:"currentColor",stroke:"currentColor",strokeWidth:o}),k.createElement("path",{d:"M28.5 17 L35.5 17 Q34 25 32 25 Q30 25 28.5 17 Z",fill:"rgba(255,255,255,0.06)"}),k.createElement("path",{d:"M28 32 Q32 31 36 32 L36 32 L28 32 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import W from"react";function fr({liquidFill:t=null,size:o=80,strokeWidth:r=1,idBase:i="CoupeGlassGrad"}){return W.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},W.createElement(e,{d:`
27
+ `,fill:"none",stroke:r,strokeWidth:o}),A.createElement("line",{x1:18,y1:16,x2:46,y2:16,stroke:r,strokeWidth:o}))}import k from"react";var Kr={colors:{accent:{200:"#ffd180",500:"#e67e22"},warning:"#ffb300",success:"#4caf50",error:"#e53935",dark:{400:"#616161",700:"#212121",900:"#121212"}}};try{global.theme=Kr}catch{}function ur({liquidFill:t=null,strokeWidth:o=.5,size:r=80,idBase:e="CordialGlassGrad"}){return k.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},k.createElement(i,{d:"M30 16 L35 16 Q34 25 31 26 Q30 26 28 16 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),k.createElement("path",{d:"M28 16 L36 16 Q34 26 32 26 Q30 26 28 16 Z",stroke:"currentColor",strokeWidth:o,fill:"none"}),k.createElement("rect",{x:31.8,y:26,width:.5,height:6,fill:"currentColor",stroke:"currentColor",strokeWidth:o}),k.createElement("path",{d:"M28.5 17 L35.5 17 Q34 25 32 25 Q30 25 28.5 17 Z",fill:"rgba(255,255,255,0.06)"}),k.createElement("path",{d:"M28 32 Q32 31 36 32 L36 32 L28 32 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import W from"react";function mr({liquidFill:t=null,size:o=80,strokeWidth:r=1,idBase:e="CoupeGlassGrad"}){return W.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},W.createElement(i,{d:`
28
28
  M12 32 Q32 36 52 32 L52 18 Q32 18 12 18 Z
29
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),W.createElement("path",{d:`
29
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),W.createElement("path",{d:`
30
30
  M12 32 Q32 36 52 32 L52 18 Q32 18 12 18 Z
31
- `,fill:"none",stroke:"currentColor",strokeWidth:r}),W.createElement("path",{d:"M32 34 L32 60",stroke:"currentColor",strokeWidth:r}),W.createElement("path",{d:"M24 60 Q32 59 40 60 L40 60 L24 60 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import Y from"react";function hr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="DemitasseGlassGrad"}){return Y.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},Y.createElement("path",{d:"M20 24 L24 45 L40 45 L44 24 Z",fill:"none",stroke:"currentColor",strokeLinejoin:"miter",strokeWidth:r}),Y.createElement(e,{d:"M20 24 L24 45 L40 45 L44 24 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),Y.createElement("path",{d:"M43 30 Q55 30 41 40",stroke:"currentColor",fill:"none",strokeWidth:r}),Y.createElement("path",{d:"M24 45 Q32 45 40 45 L40 48 L24 48 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import K from"react";function mr({liquidFill:t=["#FFF7C0","#FFD27A"],size:o=64,strokeWidth:r=.5,idBase:i="DoubleShotGlassGrad"}){return K.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},K.createElement("path",{d:"M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z",stroke:"currentColor",fill:"none",strokeWidth:r}),K.createElement(e,{d:"M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),K.createElement("rect",{x:22.5,y:58,width:19,height:3,fill:"none",stroke:"currentColor",strokeWidth:r}))}import G from"react";function pr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="FizzGlassGrad"}){return G.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},G.createElement("path",{d:"M22 10 L42 10",stroke:"currentColor",strokeWidth:r}),G.createElement(e,{d:`
31
+ `,fill:"none",stroke:"currentColor",strokeWidth:r}),W.createElement("path",{d:"M32 34 L32 60",stroke:"currentColor",strokeWidth:r}),W.createElement("path",{d:"M24 60 Q32 59 40 60 L40 60 L24 60 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import Y from"react";function fr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="DemitasseGlassGrad"}){return Y.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},Y.createElement("path",{d:"M20 24 L24 45 L40 45 L44 24 Z",fill:"none",stroke:"currentColor",strokeLinejoin:"miter",strokeWidth:r}),Y.createElement(i,{d:"M20 24 L24 45 L40 45 L44 24 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),Y.createElement("path",{d:"M43 30 Q55 30 41 40",stroke:"currentColor",fill:"none",strokeWidth:r}),Y.createElement("path",{d:"M24 45 Q32 45 40 45 L40 48 L24 48 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import K from"react";function hr({liquidFill:t=["#FFF7C0","#FFD27A"],size:o=64,strokeWidth:r=.5,idBase:e="DoubleShotGlassGrad"}){return K.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},K.createElement("path",{d:"M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z",stroke:"currentColor",fill:"none",strokeWidth:r}),K.createElement(i,{d:"M20 18 C22 30 22 46 22.5 58 L41.5 58 C42.5 46 42.5 30 44 18 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),K.createElement("rect",{x:22.5,y:58,width:19,height:3,fill:"none",stroke:"currentColor",strokeWidth:r}))}import G from"react";function pr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="FizzGlassGrad"}){return G.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},G.createElement("path",{d:"M22 10 L42 10",stroke:"currentColor",strokeWidth:r}),G.createElement(i,{d:`
32
32
  M22 10 L24 23 L40 23 L42 10 Z
33
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),G.createElement("path",{d:"M22 10 L24 23 L40 23 L42 10 Z",fill:"none",stroke:"currentColor",strokeWidth:r}),G.createElement("rect",{x:32,y:23,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),G.createElement("path",{d:"M26 33 Q32 32 38 33 L38 33 L26 33 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import $ from"react";function cr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="FluteGlassGrad"}){return $.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},$.createElement(e,{d:`
33
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),G.createElement("path",{d:"M22 10 L24 23 L40 23 L42 10 Z",fill:"none",stroke:"currentColor",strokeWidth:r}),G.createElement("rect",{x:32,y:23,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),G.createElement("path",{d:"M26 33 Q32 32 38 33 L38 33 L26 33 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import $ from"react";function cr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="FluteGlassGrad"}){return $.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},$.createElement(i,{d:`
34
34
  M30 12
35
35
  L34 12
36
36
  L36 36
37
37
  Q32 38 28 36
38
38
  Z
39
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),$.createElement("path",{d:`
39
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),$.createElement("path",{d:`
40
40
  M30 12
41
41
  L34 12
42
42
  L36 36
43
43
  Q32 38 28 36
44
44
  Z
45
- `,fill:"none",stroke:"currentColor",strokeWidth:r}),$.createElement("rect",{x:32,y:37,width:r,height:16,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),$.createElement("path",{d:"M26 53 Q32 52 38 53 L38 53 L26 53 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import v from"react";function gr({liquidFill:t=null,size:o=80,strokeWidth:r=2,idBase:i="GobletGlassGrad"}){let a=Math.round(o*90/80);return v.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax slice"},v.createElement("rect",{x:30.5,y:69,width:3,height:8,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),v.createElement(e,{d:" M19 28 L46 28 Q52 58 32 70 Q12 58 16 28 Z ",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),v.createElement("path",{d:`
45
+ `,fill:"none",stroke:"currentColor",strokeWidth:r}),$.createElement("rect",{x:32,y:37,width:r,height:16,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),$.createElement("path",{d:"M26 53 Q32 52 38 53 L38 53 L26 53 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import v from"react";function gr({liquidFill:t=null,size:o=80,strokeWidth:r=2,idBase:e="GobletGlassGrad"}){let a=Math.round(o*90/80);return v.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax meet"},v.createElement("rect",{x:30.5,y:69,width:3,height:8,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),v.createElement(i,{d:" M19 28 L46 28 Q52 58 32 70 Q12 58 16 28 Z ",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),v.createElement("path",{d:`
46
46
  M16 28
47
47
  L48 28
48
48
  Q52 58 32 70
49
49
  Q12 58 16 28
50
50
  Z
51
- `,fill:"none",stroke:"currentColor",strokeWidth:r}),v.createElement("line",{x1:16,y1:28,x2:48,y2:28,stroke:"currentColor",strokeWidth:r}),v.createElement("path",{d:" M24 77 Q32 76 40 77 L40 77 L24 77 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import U from"react";function xr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="HighballGlassGrad"}){return U.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},U.createElement(e,{d:"M18 10 L46 10 L46 60 L18 60 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),U.createElement("rect",{x:18,y:10,width:28,height:50,stroke:"currentColor",strokeWidth:r,fill:"none"}),U.createElement("rect",{x:18,y:60,width:28,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import T from"react";function Cr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=.5,idBase:a="HurricaneGlassGrad"}){return T.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},T.createElement(e,{d:"M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),T.createElement("path",{d:"M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z",stroke:"currentColor",fill:"none",strokeWidth:i}),T.createElement("rect",{x:30.5,y:47,width:3,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:i}),T.createElement("path",{d:"M26 57 Q32 56 38 57 L38 57 L26 57 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:i}))}import y from"react";function Lr({liquidFill:t=null,size:o=80,strokeWidth:r=2,idBase:i="IrishCoffeeGlassGrad"}){return y.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},y.createElement("path",{d:" M42 18 Q60 20 44 30 ",stroke:"currentColor",strokeWidth:r,fill:"none"}),y.createElement(e,{d:`
51
+ `,fill:"none",stroke:"currentColor",strokeWidth:r}),v.createElement("line",{x1:16,y1:28,x2:48,y2:28,stroke:"currentColor",strokeWidth:r}),v.createElement("path",{d:" M24 77 Q32 76 40 77 L40 77 L24 77 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import U from"react";function xr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="HighballGlassGrad"}){return U.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},U.createElement(i,{d:"M18 10 L46 10 L46 60 L18 60 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),U.createElement("rect",{x:18,y:10,width:28,height:50,stroke:"currentColor",strokeWidth:r,fill:"none"}),U.createElement("rect",{x:18,y:60,width:28,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import T from"react";function Cr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:e=.5,idBase:a="HurricaneGlassGrad"}){return T.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},T.createElement(i,{d:"M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),T.createElement("path",{d:"M24 10 C16 22, 24 38, 28 44 C30 48, 34 48, 36 44 C40 38, 48 22, 40 10 Z",stroke:"currentColor",fill:"none",strokeWidth:e}),T.createElement("rect",{x:30.5,y:47,width:3,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:e}),T.createElement("path",{d:"M26 57 Q32 56 38 57 L38 57 L26 57 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:e}))}import y from"react";function Lr({liquidFill:t=null,size:o=80,strokeWidth:r=2,idBase:e="IrishCoffeeGlassGrad"}){return y.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},y.createElement("path",{d:" M42 18 Q60 20 44 30 ",stroke:"currentColor",strokeWidth:r,fill:"none"}),y.createElement(i,{d:`
52
52
  M22 16
53
53
  L42 16
54
54
  L44 30
55
55
  Q44 38 32 42
56
56
  Q20 38 20 30
57
57
  Z
58
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),y.createElement("path",{d:`
58
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),y.createElement("path",{d:`
59
59
  M22 16
60
60
  L42 16
61
61
  L44 30
62
62
  Q44 38 32 42
63
63
  Q20 38 20 30
64
64
  Z
65
- `,stroke:"currentColor",strokeWidth:r-1,fill:"none"}),y.createElement("rect",{x:31,y:42,width:2,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),y.createElement("path",{d:" M24 44 Q32 43 40 44 L40 44 L24 44 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import m from"react";function Mr({fill:t="#a1a1a1",size:o=80,strokeWidth:r=.5}){return m.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},m.createElement("rect",{x:17,y:21,width:30,height:1,rx:1,fill:"none",stroke:t,strokeWidth:r}),m.createElement("rect",{x:17,y:21,width:30,height:1,rx:1,transform:"scale(0.98)",opacity:.7,fill:t,strokeWidth:0}),m.createElement("path",{d:`
65
+ `,stroke:"currentColor",strokeWidth:r-1,fill:"none"}),y.createElement("rect",{x:31,y:42,width:2,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),y.createElement("path",{d:" M24 44 Q32 43 40 44 L40 44 L24 44 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import h from"react";function Mr({fill:t="#a1a1a1",size:o=80,strokeWidth:r=.5}){return h.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},h.createElement("rect",{x:17,y:21,width:30,height:1,rx:1,fill:"none",stroke:t,strokeWidth:r}),h.createElement("rect",{x:17,y:21,width:30,height:1,rx:1,transform:"scale(0.98)",opacity:.7,fill:t,strokeWidth:0}),h.createElement("path",{d:`
66
66
  M18 22
67
67
  L46 22
68
68
  L42 54
69
69
  L22 54
70
70
  Z
71
- `,fill:"none",stroke:t,strokeWidth:r}),m.createElement("path",{d:`
71
+ `,fill:"none",stroke:t,strokeWidth:r}),h.createElement("path",{d:`
72
72
  M18 22
73
73
  L46 22
74
74
  L42 54
75
75
  L22 54
76
76
  Z
77
- `,transform:"scale(0.98)",fill:t}),m.createElement("rect",{x:20,y:53,width:24,height:1,rx:r,fill:"none",stroke:t,strokeWidth:r}),m.createElement("rect",{x:20,y:53,width:24,height:1,rx:r,transform:"scale(0.98)",fill:t,strokeWidth:0}),m.createElement("rect",{x:18.8,y:54,width:26,height:1,rx:r,fill:"none",stroke:t,strokeWidth:r}),m.createElement("rect",{x:18.8,y:54,width:26,height:1,rx:r,transform:"scale(0.98)",fill:t,strokeWidth:0}))}import H from"react";function kr({liquidFill:t=["#A8E063","#56AB2F"],size:o=80,strokeWidth:r=.5,idBase:i="MargaritaGlassGrad"}){let a=t;return H.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},H.createElement(e,{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",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),H.createElement("path",{d:`M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z
78
- M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,fill:"none",stroke:"currentColor",strokeWidth:r}),H.createElement("rect",{x:31.5,y:36,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),H.createElement("path",{d:" M24 46 Q32 45 40 46 L40 47 L24 47 Z ",fill:"currentColor",strokeWidth:0}))}import P from"react";function Gr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=1,idBase:a="MartiniGlassGrad"}){return P.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},P.createElement(e,{d:"M10 10 L54 10 L32 40 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),P.createElement("path",{d:"M10 10 L54 10 L32 40 Z",stroke:"currentColor",fill:"none",strokeWidth:i}),P.createElement("path",{d:"M32 40 L32 58",stroke:"currentColor",strokeWidth:i}),P.createElement("path",{d:" M24 58 Q32 57 40 58 L40 59 L24 59 Z ",fill:"currentColor"}))}import D from"react";function vr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=.5,idBase:a="NickAndNoraGlassGrad"}){return D.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},D.createElement(e,{d:"M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),D.createElement("path",{d:"M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",fill:"none",stroke:"currentColor",strokeWidth:i}),D.createElement("rect",{x:32,y:39,width:1,height:16,fill:"currentColor",stroke:"currentColor",strokeWidth:i}),D.createElement("path",{d:" M24 55 Q32 54 40 55 L40 55 L24 55 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:i}))}import N from"react";function yr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="ParfaitGlassGrad"}){return N.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},N.createElement(e,{d:`
77
+ `,transform:"scale(0.98)",fill:t}),h.createElement("rect",{x:20,y:53,width:24,height:1,rx:r,fill:"none",stroke:t,strokeWidth:r}),h.createElement("rect",{x:20,y:53,width:24,height:1,rx:r,transform:"scale(0.98)",fill:t,strokeWidth:0}),h.createElement("rect",{x:18.8,y:54,width:26,height:1,rx:r,fill:"none",stroke:t,strokeWidth:r}),h.createElement("rect",{x:18.8,y:54,width:26,height:1,rx:r,transform:"scale(0.98)",fill:t,strokeWidth:0}))}import H from"react";function kr({liquidFill:t=["#A8E063","#56AB2F"],size:o=80,strokeWidth:r=.5,idBase:e="MargaritaGlassGrad"}){let a=t;return H.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},H.createElement(i,{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",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),H.createElement("path",{d:`M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z
78
+ M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,fill:"none",stroke:"currentColor",strokeWidth:r}),H.createElement("rect",{x:31.5,y:36,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),H.createElement("path",{d:" M24 46 Q32 45 40 46 L40 47 L24 47 Z ",fill:"currentColor",strokeWidth:0}))}import P from"react";function Gr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:e=1,idBase:a="MartiniGlassGrad"}){return P.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},P.createElement(i,{d:"M10 10 L54 10 L32 40 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),P.createElement("path",{d:"M10 10 L54 10 L32 40 Z",stroke:"currentColor",fill:"none",strokeWidth:e}),P.createElement("path",{d:"M32 40 L32 58",stroke:"currentColor",strokeWidth:e}),P.createElement("path",{d:" M24 58 Q32 57 40 58 L40 59 L24 59 Z ",fill:"currentColor"}))}import D from"react";function vr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:e=.5,idBase:a="NickAndNoraGlassGrad"}){return D.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},D.createElement(i,{d:"M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),D.createElement("path",{d:"M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",fill:"none",stroke:"currentColor",strokeWidth:e}),D.createElement("rect",{x:32,y:39,width:1,height:16,fill:"currentColor",stroke:"currentColor",strokeWidth:e}),D.createElement("path",{d:" M24 55 Q32 54 40 55 L40 55 L24 55 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:e}))}import N from"react";function yr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="ParfaitGlassGrad"}){return N.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},N.createElement(i,{d:`
79
79
  M22 12
80
80
  L42 12
81
81
  Q40 30 38 44
82
82
  Q32 50 26 44
83
83
  Q24 30 22 12
84
84
  Z
85
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),N.createElement("path",{d:`
85
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),N.createElement("path",{d:`
86
86
  M22 12
87
87
  L42 12
88
88
  Q40 30 38 44
@@ -91,13 +91,13 @@ import C from"react";function e({d:t,transform:o,liquidFill:r=null,liquidStyle:i
91
91
  Z
92
92
  `,stroke:"currentColor",strokeWidth:r,fill:"none"}),N.createElement("rect",{x:31,y:47,width:2,height:8,fill:"currentColor"}),N.createElement("path",{d:`
93
93
  M22 57 Q32 53 42 57 L42 57.5 L22 57.5 Z
94
- `,fill:"currentColor"}))}import X from"react";function wr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="PilsnerGlassGrad"}){return X.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},X.createElement(e,{d:"M24 10 L40 10 Q38 36 36 50 Q32 54 28 50 Q26 36 24 10 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),X.createElement("path",{d:"M28 50 Q32 55 37 51 L37 56 Q35 56 28.5 56 Z",transform:"scale(0.98)",fill:"currentColor",className:"base"}),X.createElement("path",{d:"M24 10 L40 10 Q38 36 36 55 Q32 55 28 55 Q26 36 24 10 Z",stroke:"currentColor",strokeWidth:r,fill:"none"}))}import z from"react";function Zr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=.5,idBase:a="PintGlassGrad"}){return z.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},z.createElement(e,{d:"M18 10 L46 10 L42 54 L22 54 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),z.createElement("path",{d:"M18 10 L46 10 L42 54 L22 54 Z",stroke:"currentColor",strokeWidth:i,fill:"none"}),z.createElement("rect",{x:22,y:54,width:20,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:i}))}import c from"react";function Qr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="PousseCafeGlassGrad"}){let tr=Math.floor(o*1.125);return c.createElement("svg",{width:o,height:tr,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax slice"},c.createElement("g",null,c.createElement(e,{d:`
94
+ `,fill:"currentColor"}))}import X from"react";function wr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="PilsnerGlassGrad"}){return X.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},X.createElement(i,{d:"M24 10 L40 10 Q38 36 36 50 Q32 54 28 50 Q26 36 24 10 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),X.createElement("path",{d:"M28 50 Q32 55 37 51 L37 56 Q35 56 28.5 56 Z",transform:"scale(0.98)",fill:"currentColor",className:"base"}),X.createElement("path",{d:"M24 10 L40 10 Q38 36 36 55 Q32 55 28 55 Q26 36 24 10 Z",stroke:"currentColor",strokeWidth:r,fill:"none"}))}import z from"react";function Zr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:e=.5,idBase:a="PintGlassGrad"}){return z.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},z.createElement(i,{d:"M18 10 L46 10 L42 54 L22 54 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),z.createElement("path",{d:"M18 10 L46 10 L42 54 L22 54 Z",stroke:"currentColor",strokeWidth:e,fill:"none"}),z.createElement("rect",{x:22,y:54,width:20,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:e}))}import c from"react";function Qr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="PousseCafeGlassGrad"}){let tr=Math.floor(o*1.125);return c.createElement("svg",{width:o,height:tr,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax meet"},c.createElement("g",null,c.createElement(i,{d:`
95
95
  M ${32-11} 12
96
96
  L ${32+11} 12
97
97
  L ${32+9} 38
98
98
  Q 32 42 ${32-9} 38
99
99
  Z
100
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),c.createElement("path",{d:`
100
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),c.createElement("path",{d:`
101
101
  M ${32-11} 12
102
102
  L ${32+11} 12
103
103
  L ${32+9} 38
@@ -109,32 +109,32 @@ import C from"react";function e({d:t,transform:o,liquidFill:r=null,liquidStyle:i
109
109
  L ${32+6} 30
110
110
  Q 32 33 ${32-6} 30
111
111
  Z
112
- `,fill:"rgba(255,255,255,0.06)"}),c.createElement("rect",{x:32-1,y:40,width:2,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),c.createElement("path",{d:`M ${32-6} 50 Q 32 48 ${32+6} 50 L ${32+6} 50 L ${32-6} 50 Z`,fill:"currentColor",stroke:"currentColor",strokeWidth:r})))}import g from"react";function br({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="PunchGlassGrad"}){return g.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},g.createElement("g",null,g.createElement(e,{d:`
112
+ `,fill:"rgba(255,255,255,0.06)"}),c.createElement("rect",{x:32-1,y:40,width:2,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),c.createElement("path",{d:`M ${32-6} 50 Q 32 48 ${32+6} 50 L ${32+6} 50 L ${32-6} 50 Z`,fill:"currentColor",stroke:"currentColor",strokeWidth:r})))}import g from"react";function br({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="PunchGlassGrad"}){return g.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},g.createElement("g",null,g.createElement(i,{d:`
113
113
  M22 18
114
114
  L42 18
115
115
  L38 30
116
116
  Q32 34 26 30
117
117
  L22 18
118
118
  Z
119
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),g.createElement("path",{d:`
119
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),g.createElement("path",{d:`
120
120
  M22 18
121
121
  L42 18
122
122
  L38 30
123
123
  Q32 34 26 30
124
124
  L22 18
125
125
  Z
126
- `,stroke:"currentColor",strokeWidth:r,fill:"none"}),g.createElement("path",{d:"M28 20 L28 28 M32 20 L32 30 M36 20 L36 28",stroke:"currentColor",strokeWidth:.6,strokeLinecap:"round",opacity:.06}),g.createElement("rect",{x:31,y:32,width:2,height:6,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),g.createElement("path",{d:"M26 38 Q32 37 38 38 L38 38 L26 38 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r})))}import R from"react";function Br({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="RocksGlassGrad"}){return R.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},R.createElement(e,{d:"M14 24 L50 24 L50 58 L14 58 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),R.createElement("rect",{x:14,y:24,width:36,height:34,stroke:"currentColor",strokeWidth:r,fill:"none"}),R.createElement("line",{x1:13.7,y1:59,x2:50.2,y2:59,stroke:"currentColor",strokeWidth:"2"}))}import rr from"react";function Sr({liquidFill:t=["#FFFFFF","#E0E0E0"],size:o=64,strokeWidth:r=.5,idBase:i="SingleShotGlassGrad"}){return rr.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},rr.createElement("path",{d:"M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z",stroke:"currentColor",fill:"none",strokeWidth:r}),rr.createElement(e,{d:"M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),rr.createElement("rect",{x:25,y:48,width:14,height:3,stroke:"currentColor",strokeWidth:r,fill:"none"}))}import w from"react";function qr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="SlingGlassGrad"}){return w.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},w.createElement("line",{x1:24,y1:12,x2:40,y2:12,stroke:"currentColor",strokeWidth:r}),w.createElement(e,{d:"M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),w.createElement("path",{d:"M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z",stroke:"currentColor",strokeWidth:r,fill:"none"}),w.createElement("rect",{x:31,y:54,width:2,height:2,fill:"currentColor"}),w.createElement("path",{d:"M29 56 Q32 55 35 56 L35 56 L29 56 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r,rx:1}))}import Z from"react";function Fr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="SnifterGlassGrad"}){return Z.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},Z.createElement("line",{x1:22,y1:18,x2:42,y2:18,stroke:"currentColor",strokeWidth:r}),Z.createElement("path",{d:`
126
+ `,stroke:"currentColor",strokeWidth:r,fill:"none"}),g.createElement("path",{d:"M28 20 L28 28 M32 20 L32 30 M36 20 L36 28",stroke:"currentColor",strokeWidth:.6,strokeLinecap:"round",opacity:.06}),g.createElement("rect",{x:31,y:32,width:2,height:6,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),g.createElement("path",{d:"M26 38 Q32 37 38 38 L38 38 L26 38 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r})))}import R from"react";function Br({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="RocksGlassGrad"}){return R.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},R.createElement(i,{d:"M14 24 L50 24 L50 58 L14 58 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),R.createElement("rect",{x:14,y:24,width:36,height:34,stroke:"currentColor",strokeWidth:r,fill:"none"}),R.createElement("line",{x1:13.7,y1:59,x2:50.2,y2:59,stroke:"currentColor",strokeWidth:"2"}))}import rr from"react";function Sr({liquidFill:t=["#FFFFFF","#E0E0E0"],size:o=64,strokeWidth:r=.5,idBase:e="SingleShotGlassGrad"}){return rr.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},rr.createElement("path",{d:"M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z",stroke:"currentColor",fill:"none",strokeWidth:r}),rr.createElement(i,{d:"M23 28 C24.5 36 24.5 40 25 48 L39 48 C39.5 40 39.5 36 41 28 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),rr.createElement("rect",{x:25,y:48,width:14,height:3,stroke:"currentColor",strokeWidth:r,fill:"none"}))}import w from"react";function qr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="SlingGlassGrad"}){return w.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},w.createElement("line",{x1:24,y1:12,x2:40,y2:12,stroke:"currentColor",strokeWidth:r}),w.createElement(i,{d:"M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),w.createElement("path",{d:"M25 12 L40 12 C41 29 40 46 32 55 C24 46 24 28 24 12 Z",stroke:"currentColor",strokeWidth:r,fill:"none"}),w.createElement("rect",{x:31,y:54,width:2,height:2,fill:"currentColor"}),w.createElement("path",{d:"M29 56 Q32 55 35 56 L35 56 L29 56 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r,rx:1}))}import Z from"react";function Fr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="SnifterGlassGrad"}){return Z.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},Z.createElement("line",{x1:22,y1:18,x2:42,y2:18,stroke:"currentColor",strokeWidth:r}),Z.createElement("path",{d:`
127
127
  M22 18
128
128
  C16 32, 16 46, 32 52
129
129
  C48 46, 48 32, 42 18
130
130
  Z
131
- `,stroke:"currentColor",strokeWidth:r,fill:"none"}),Z.createElement(e,{d:" M22 18 C16 32, 16 46, 32 52 C48 46, 48 32, 42 18 Z ",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),Z.createElement("rect",{x:30,y:51,width:4,height:4,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),Z.createElement("path",{d:"M26 54 Q32 51 38 54 L38 55 L26 55 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import Q from"react";function Ar({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="SourGlassGrad"}){return Q.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},Q.createElement("line",{x1:16,y1:18,x2:48,y2:18,stroke:"currentColor",strokeWidth:r}),Q.createElement(e,{d:`
131
+ `,stroke:"currentColor",strokeWidth:r,fill:"none"}),Z.createElement(i,{d:" M22 18 C16 32, 16 46, 32 52 C48 46, 48 32, 42 18 Z ",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),Z.createElement("rect",{x:30,y:51,width:4,height:4,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),Z.createElement("path",{d:"M26 54 Q32 51 38 54 L38 55 L26 55 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import Q from"react";function Ar({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="SourGlassGrad"}){return Q.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},Q.createElement("line",{x1:16,y1:18,x2:48,y2:18,stroke:"currentColor",strokeWidth:r}),Q.createElement(i,{d:`
132
132
  M16 18
133
133
  L48 18
134
134
  C46 30, 46 38, 32 42
135
135
  C18 38, 18 30, 16 18
136
136
  Z
137
- `,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),Q.createElement("path",{d:`
137
+ `,transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),Q.createElement("path",{d:`
138
138
  M16 18
139
139
  L48 18
140
140
  C46 30, 46 38, 32 42
@@ -146,4 +146,4 @@ import C from"react";function e({d:t,transform:o,liquidFill:r=null,liquidStyle:i
146
146
  L42 54
147
147
  L22 54
148
148
  Z
149
- `,fill:"currentColor"}))}import b from"react";function Wr({liquidFill:t=null,size:o=80,strokeWidth:r=1,idBase:i="TankardGlassGrad"}){return b.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},b.createElement("rect",{x:13,y:44,width:36,height:4,fill:"currentColor"}),b.createElement(e,{d:"M14 10 L48 10 L48 44 L14 44 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),b.createElement("rect",{x:14,y:10,width:34,height:34,fill:"none",stroke:"currentColor",strokeWidth:r*1.4}),b.createElement("g",null,b.createElement("path",{d:"M49 17 C60 19 60 34 49 37",stroke:"currentColor",strokeWidth:r*3,strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})))}import B from"react";function Yr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="TikiGlassGrad"}){return B.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},B.createElement("rect",{x:21.75,y:52,width:20.5,height:2,fill:"currentColor"}),B.createElement("rect",{x:20,y:50,width:24,height:4,rx:2,fill:"currentColor",opacity:.06}),B.createElement("rect",{x:22,y:10,width:20,height:42,stroke:"currentColor",strokeWidth:r,fill:"none",opacity:.9}),B.createElement(e,{d:"M21 9 L41 9 L41 51 L21 51 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),B.createElement("ellipse",{cx:32,cy:32,rx:6,ry:3,fill:"currentColor"}))}import x from"react";function $r({liquidFill:t=null,size:o=80,strokeWidth:r=.8,idBase:i="ToddyGlassGrad"}){return x.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},x.createElement(e,{d:"M22 12 H42 V40 H22 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),x.createElement("path",{d:"M22 12 H42 V40 H22 Z",fill:"none",stroke:"currentColor",strokeWidth:r,strokeLinejoin:"round"}),x.createElement("g",null,x.createElement("path",{d:"M43 16 C52 18 52 34 43 36",stroke:"currentColor",strokeWidth:r*2.4,strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),x.createElement("rect",{x:30,y:40,width:4,height:6,fill:"currentColor"}),x.createElement("path",{d:"M22 47 Q32 43 42 47 L42 48 L22 48 Z",fill:"currentColor"}))}import or from"react";function Tr({liquidFill:t=["#FFFFFF","#E0E0E0"],size:o=80,strokeWidth:r=.5,idBase:i="ShotGlassGrad",...a}){return or.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax slice"},or.createElement("rect",{x:22,y:30,width:20,height:18,stroke:"currentColor",fill:"none",strokeWidth:r}),or.createElement(e,{d:"M22 30 L42 30 L42 48 L22 48 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t,...a}),or.createElement("rect",{x:22,y:48,width:20,height:3,fill:"none",stroke:"currentColor",strokeWidth:r}))}import E from"react";function Hr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="WineGlassGrad"}){let a=Math.round(o*90/80);return E.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax slice"},E.createElement(e,{d:"M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),E.createElement("path",{d:"M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",fill:"none",stroke:"currentColor",strokeWidth:r}),E.createElement("rect",{x:31.5,y:62,width:1,height:25,fill:"currentColor"}),E.createElement("path",{d:"M24 86 Q32 84 40 86 L40 87 L24 87 Z",fill:"currentColor"}))}var Ur=[{name:"AbsintheGlass",about:"Tall narrow glass traditionally used for absinthe"},{name:"BrandySnifterGlass",about:"Short, wide bowl for brandy and aromatics"},{name:"CollinsGlass",about:"Tall, slim highball-style glass for long drinks"},{name:"CopperMug",about:"Insulated mug commonly used for Moscow Mules"},{name:"CordialGlass",about:"Small stemmed glass for cordials and liqueurs"},{name:"CoupeGlass",about:"Shallow, broad-bowled stemmed glass for cocktails"},{name:"DemitasseGlass",about:"Tiny cup used for espresso or small servings"},{name:"DoubleShotGlass",about:"Small glass sized for a double shot or liqueur"},{name:"FizzGlass",about:"Tall glass for fizzy, highball-like cocktails"},{name:"FluteGlass",about:"Narrow stemmed glass for sparkling cocktails or champagne"},{name:"GobletGlass",about:"Large bowl stemmed glass for water or wine-style serves"},{name:"HighballGlass",about:"Tall glass for mixed drinks over ice"},{name:"HurricaneGlass",about:"Curved glass used for tropical, rum-forward drinks"},{name:"IrishCoffeeGlass",about:"Handled glass for hot cocktails like Irish Coffee"},{name:"JulepCup",about:"Silver or metal cup for mint juleps served over crushed ice"},{name:"MargaritaGlass",about:"Broad-rimmed glass typically used for margaritas"},{name:"MartiniGlass",about:"Classic conical stemmed glass for martinis and cocktails"},{name:"NickAndNoraGlass",about:"Small stemmed cocktail glass named for film characters"},{name:"ParfaitGlass",about:"Tall, elegant glass for layered desserts or cocktails"},{name:"PilsnerGlass",about:"Tall tapered glass for pilsner-style beers"},{name:"PintGlass",about:"Standard pint glass for beer servings"},{name:"PousseCafeGlass",about:"Very tall, narrow glass for layered pousse-caf\xE9s"},{name:"PunchGlass",about:"Large bowl or glass used for punch servings"},{name:"RocksGlass",about:"Short, wide glass for spirits served over ice"},{name:"SingleShotGlass",about:"Small single-shot glass for neat pours"},{name:"SlingGlass",about:"Stemmed glass used historically for sling cocktails"},{name:"SnifterGlass",about:"Rounded glass for nosing spirits like brandy or cognac"},{name:"SourGlass",about:"Stemmed glass for sours and shaken cocktails"},{name:"TankardGlass",about:"Large handled mug, often used for beer"},{name:"TikiGlass",about:"Themed ceramic or glass mug for tiki-style cocktails"},{name:"ToddyGlass",about:"Handled mug for hot toddies and warm drinks"},{name:"WhiskeyShotGlass",about:"Small glass for whiskey shots"},{name:"WineGlass",about:"Standard stemmed glass for wine service"}],Dr=Ur;var fi={Liquid:e,AbsintheGlass:sr,BrandySnifterGlass:nr,CollinsGlass:ar,CopperMug:dr,CordialGlass:ur,CoupeGlass:fr,DemitasseGlass:hr,DoubleShotGlass:mr,FizzGlass:pr,FluteGlass:cr,GobletGlass:gr,HighballGlass:xr,HurricaneGlass:Cr,IrishCoffeeGlass:Lr,JulepCup:Mr,MargaritaGlass:kr,MartiniGlass:Gr,NickAndNoraGlass:vr,ParfaitGlass:yr,PilsnerGlass:wr,PintGlass:Zr,PousseCafeGlass:Qr,PunchGlass:br,RocksGlass:Br,SingleShotGlass:Sr,SlingGlass:qr,SnifterGlass:Fr,SourGlass:Ar,TankardGlass:Wr,TikiGlass:Yr,ToddyGlass:$r,WhiskeyShotGlass:Tr,WineGlass:Hr,glasses:Dr};export{sr as AbsintheGlass,nr as BrandySnifterGlass,ar as CollinsGlass,dr as CopperMug,ur as CordialGlass,fr as CoupeGlass,hr as DemitasseGlass,mr as DoubleShotGlass,pr as FizzGlass,cr as FluteGlass,gr as GobletGlass,xr as HighballGlass,Cr as HurricaneGlass,Lr as IrishCoffeeGlass,Mr as JulepCup,e as Liquid,kr as MargaritaGlass,Gr as MartiniGlass,vr as NickAndNoraGlass,yr as ParfaitGlass,wr as PilsnerGlass,Zr as PintGlass,Qr as PousseCafeGlass,br as PunchGlass,Br as RocksGlass,Sr as SingleShotGlass,qr as SlingGlass,Fr as SnifterGlass,Ar as SourGlass,Wr as TankardGlass,Yr as TikiGlass,$r as ToddyGlass,Tr as WhiskeyShotGlass,Hr as WineGlass,fi as default,Dr as glasses};
149
+ `,fill:"currentColor"}))}import b from"react";function Wr({liquidFill:t=null,size:o=80,strokeWidth:r=1,idBase:e="TankardGlassGrad"}){return b.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},b.createElement("rect",{x:13,y:44,width:36,height:4,fill:"currentColor"}),b.createElement(i,{d:"M14 10 L48 10 L48 44 L14 44 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),b.createElement("rect",{x:14,y:10,width:34,height:34,fill:"none",stroke:"currentColor",strokeWidth:r*1.4}),b.createElement("g",null,b.createElement("path",{d:"M49 17 C60 19 60 34 49 37",stroke:"currentColor",strokeWidth:r*3,strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})))}import B from"react";function Yr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="TikiGlassGrad"}){return B.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},B.createElement("rect",{x:21.75,y:52,width:20.5,height:2,fill:"currentColor"}),B.createElement("rect",{x:20,y:50,width:24,height:4,rx:2,fill:"currentColor",opacity:.06}),B.createElement("rect",{x:22,y:10,width:20,height:42,stroke:"currentColor",strokeWidth:r,fill:"none",opacity:.9}),B.createElement(i,{d:"M21 9 L41 9 L41 51 L21 51 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),B.createElement("ellipse",{cx:32,cy:32,rx:6,ry:3,fill:"currentColor"}))}import x from"react";function $r({liquidFill:t=null,size:o=80,strokeWidth:r=.8,idBase:e="ToddyGlassGrad"}){return x.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},x.createElement(i,{d:"M22 12 H42 V40 H22 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),x.createElement("path",{d:"M22 12 H42 V40 H22 Z",fill:"none",stroke:"currentColor",strokeWidth:r,strokeLinejoin:"round"}),x.createElement("g",null,x.createElement("path",{d:"M43 16 C52 18 52 34 43 36",stroke:"currentColor",strokeWidth:r*2.4,strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),x.createElement("rect",{x:30,y:40,width:4,height:6,fill:"currentColor"}),x.createElement("path",{d:"M22 47 Q32 43 42 47 L42 48 L22 48 Z",fill:"currentColor"}))}import or from"react";function Tr({liquidFill:t=["#FFFFFF","#E0E0E0"],size:o=80,strokeWidth:r=.5,idBase:e="ShotGlassGrad",...a}){return or.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64",preserveAspectRatio:"xMidYMax meet"},or.createElement("rect",{x:18,y:30,width:30,height:24,stroke:"currentColor",fill:"none",strokeWidth:r}),or.createElement(i,{d:"M18 30 L48 30 L48 54 L18 54 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t,...a}),or.createElement("rect",{x:18,y:54,width:30,height:3,fill:"none",stroke:"currentColor",strokeWidth:r}))}import E from"react";function Hr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:e="WineGlassGrad"}){return E.createElement("svg",{width:o,height:o,viewBox:"0 0 64 90",preserveAspectRatio:"xMidYMax meet"},E.createElement(i,{d:"M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",transform:"scale(0.98)",idBase:e,opacity:.7,liquidFill:t}),E.createElement("path",{d:"M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",fill:"none",stroke:"currentColor",strokeWidth:r}),E.createElement("rect",{x:31.5,y:62,width:1,height:25,fill:"currentColor"}),E.createElement("path",{d:"M24 86 Q32 84 40 86 L40 87 L24 87 Z",fill:"currentColor"}))}var Ur=[{name:"AbsintheGlass",about:"Tall narrow glass traditionally used for absinthe"},{name:"BrandySnifterGlass",about:"Short, wide bowl for brandy and aromatics"},{name:"CollinsGlass",about:"Tall, slim highball-style glass for long drinks"},{name:"CopperMug",about:"Insulated mug commonly used for Moscow Mules"},{name:"CordialGlass",about:"Small stemmed glass for cordials and liqueurs"},{name:"CoupeGlass",about:"Shallow, broad-bowled stemmed glass for cocktails"},{name:"DemitasseGlass",about:"Tiny cup used for espresso or small servings"},{name:"DoubleShotGlass",about:"Small glass sized for a double shot or liqueur"},{name:"FizzGlass",about:"Tall glass for fizzy, highball-like cocktails"},{name:"FluteGlass",about:"Narrow stemmed glass for sparkling cocktails or champagne"},{name:"GobletGlass",about:"Large bowl stemmed glass for water or wine-style serves"},{name:"HighballGlass",about:"Tall glass for mixed drinks over ice"},{name:"HurricaneGlass",about:"Curved glass used for tropical, rum-forward drinks"},{name:"IrishCoffeeGlass",about:"Handled glass for hot cocktails like Irish Coffee"},{name:"JulepCup",about:"Silver or metal cup for mint juleps served over crushed ice"},{name:"MargaritaGlass",about:"Broad-rimmed glass typically used for margaritas"},{name:"MartiniGlass",about:"Classic conical stemmed glass for martinis and cocktails"},{name:"NickAndNoraGlass",about:"Small stemmed cocktail glass named for film characters"},{name:"ParfaitGlass",about:"Tall, elegant glass for layered desserts or cocktails"},{name:"PilsnerGlass",about:"Tall tapered glass for pilsner-style beers"},{name:"PintGlass",about:"Standard pint glass for beer servings"},{name:"PousseCafeGlass",about:"Very tall, narrow glass for layered pousse-caf\xE9s"},{name:"PunchGlass",about:"Large bowl or glass used for punch servings"},{name:"RocksGlass",about:"Short, wide glass for spirits served over ice"},{name:"SingleShotGlass",about:"Small single-shot glass for neat pours"},{name:"SlingGlass",about:"Stemmed glass used historically for sling cocktails"},{name:"SnifterGlass",about:"Rounded glass for nosing spirits like brandy or cognac"},{name:"SourGlass",about:"Stemmed glass for sours and shaken cocktails"},{name:"TankardGlass",about:"Large handled mug, often used for beer"},{name:"TikiGlass",about:"Themed ceramic or glass mug for tiki-style cocktails"},{name:"ToddyGlass",about:"Handled mug for hot toddies and warm drinks"},{name:"WhiskeyShotGlass",about:"Small glass for whiskey shots"},{name:"WineGlass",about:"Standard stemmed glass for wine service"}],Dr=Ur;var mi={Liquid:i,AbsintheGlass:sr,BrandySnifterGlass:nr,CollinsGlass:ar,CopperMug:dr,CordialGlass:ur,CoupeGlass:mr,DemitasseGlass:fr,DoubleShotGlass:hr,FizzGlass:pr,FluteGlass:cr,GobletGlass:gr,HighballGlass:xr,HurricaneGlass:Cr,IrishCoffeeGlass:Lr,JulepCup:Mr,MargaritaGlass:kr,MartiniGlass:Gr,NickAndNoraGlass:vr,ParfaitGlass:yr,PilsnerGlass:wr,PintGlass:Zr,PousseCafeGlass:Qr,PunchGlass:br,RocksGlass:Br,SingleShotGlass:Sr,SlingGlass:qr,SnifterGlass:Fr,SourGlass:Ar,TankardGlass:Wr,TikiGlass:Yr,ToddyGlass:$r,WhiskeyShotGlass:Tr,WineGlass:Hr,glasses:Dr};export{sr as AbsintheGlass,nr as BrandySnifterGlass,ar as CollinsGlass,dr as CopperMug,ur as CordialGlass,mr as CoupeGlass,fr as DemitasseGlass,hr as DoubleShotGlass,pr as FizzGlass,cr as FluteGlass,gr as GobletGlass,xr as HighballGlass,Cr as HurricaneGlass,Lr as IrishCoffeeGlass,Mr as JulepCup,i as Liquid,kr as MargaritaGlass,Gr as MartiniGlass,vr as NickAndNoraGlass,yr as ParfaitGlass,wr as PilsnerGlass,Zr as PintGlass,Qr as PousseCafeGlass,br as PunchGlass,Br as RocksGlass,Sr as SingleShotGlass,qr as SlingGlass,Fr as SnifterGlass,Ar as SourGlass,Wr as TankardGlass,Yr as TikiGlass,$r as ToddyGlass,Tr as WhiskeyShotGlass,Hr as WineGlass,mi as default,Dr as glasses};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bace51/cocktailjs-react",
3
- "version": "1.0.10",
3
+ "version": "1.0.12",
4
4
  "private": false,
5
5
  "description": "Lightweight React components for rendering cocktail glasses and liquids as SVG.",
6
6
  "keywords": [