@bace51/cocktailjs-react 1.0.6 → 1.0.7
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 +44 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.mjs +27 -27
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -63,7 +63,8 @@ __export(src_exports, {
|
|
|
63
63
|
ToddyGlass: () => ToddyGlass,
|
|
64
64
|
WhiskeyShotGlass: () => WhiskeyShotGlass,
|
|
65
65
|
WineGlass: () => WineGlass,
|
|
66
|
-
default: () => src_default
|
|
66
|
+
default: () => src_default,
|
|
67
|
+
glasses: () => glasses_default
|
|
67
68
|
});
|
|
68
69
|
module.exports = __toCommonJS(src_exports);
|
|
69
70
|
|
|
@@ -1874,6 +1875,44 @@ function WineGlass({
|
|
|
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" }));
|
|
1875
1876
|
}
|
|
1876
1877
|
|
|
1878
|
+
// src/glasses.js
|
|
1879
|
+
var glasses = {
|
|
1880
|
+
AbsintheGlass: "Tall narrow glass traditionally used for absinthe",
|
|
1881
|
+
BrandySnifterGlass: "Short, wide bowl for brandy and aromatics",
|
|
1882
|
+
CollinsGlass: "Tall, slim highball-style glass for long drinks",
|
|
1883
|
+
CopperMug: "Insulated mug commonly used for Moscow Mules",
|
|
1884
|
+
CordialGlass: "Small stemmed glass for cordials and liqueurs",
|
|
1885
|
+
CoupeGlass: "Shallow, broad-bowled stemmed glass for cocktails",
|
|
1886
|
+
DemitasseGlass: "Tiny cup used for espresso or small servings",
|
|
1887
|
+
DoubleShotGlass: "Small glass sized for a double shot or liqueur",
|
|
1888
|
+
FizzGlass: "Tall glass for fizzy, highball-like cocktails",
|
|
1889
|
+
FluteGlass: "Narrow stemmed glass for sparkling cocktails or champagne",
|
|
1890
|
+
GobletGlass: "Large bowl stemmed glass for water or wine-style serves",
|
|
1891
|
+
HighballGlass: "Tall glass for mixed drinks over ice",
|
|
1892
|
+
HurricaneGlass: "Curved glass used for tropical, rum-forward drinks",
|
|
1893
|
+
IrishCoffeeGlass: "Handled glass for hot cocktails like Irish Coffee",
|
|
1894
|
+
JulepCup: "Silver or metal cup for mint juleps served over crushed ice",
|
|
1895
|
+
MargaritaGlass: "Broad-rimmed glass typically used for margaritas",
|
|
1896
|
+
MartiniGlass: "Classic conical stemmed glass for martinis and cocktails",
|
|
1897
|
+
NickAndNoraGlass: "Small stemmed cocktail glass named for film characters",
|
|
1898
|
+
ParfaitGlass: "Tall, elegant glass for layered desserts or cocktails",
|
|
1899
|
+
PilsnerGlass: "Tall tapered glass for pilsner-style beers",
|
|
1900
|
+
PintGlass: "Standard pint glass for beer servings",
|
|
1901
|
+
PousseCafeGlass: "Very tall, narrow glass for layered pousse-caf\xE9s",
|
|
1902
|
+
PunchGlass: "Large bowl or glass used for punch servings",
|
|
1903
|
+
RocksGlass: "Short, wide glass for spirits served over ice",
|
|
1904
|
+
SingleShotGlass: "Small single-shot glass for neat pours",
|
|
1905
|
+
SlingGlass: "Stemmed glass used historically for sling cocktails",
|
|
1906
|
+
SnifterGlass: "Rounded glass for nosing spirits like brandy or cognac",
|
|
1907
|
+
SourGlass: "Stemmed glass for sours and shaken cocktails",
|
|
1908
|
+
TankardGlass: "Large handled mug, often used for beer",
|
|
1909
|
+
TikiGlass: "Themed ceramic or glass mug for tiki-style cocktails",
|
|
1910
|
+
ToddyGlass: "Handled mug for hot toddies and warm drinks",
|
|
1911
|
+
WhiskeyShotGlass: "Small glass for whiskey shots",
|
|
1912
|
+
WineGlass: "Standard stemmed glass for wine service"
|
|
1913
|
+
};
|
|
1914
|
+
var glasses_default = glasses;
|
|
1915
|
+
|
|
1877
1916
|
// src/index.js
|
|
1878
1917
|
var src_default = {
|
|
1879
1918
|
Liquid,
|
|
@@ -1909,7 +1948,8 @@ var src_default = {
|
|
|
1909
1948
|
TikiGlass,
|
|
1910
1949
|
ToddyGlass,
|
|
1911
1950
|
WhiskeyShotGlass,
|
|
1912
|
-
WineGlass
|
|
1951
|
+
WineGlass,
|
|
1952
|
+
glasses: glasses_default
|
|
1913
1953
|
};
|
|
1914
1954
|
// Annotate the CommonJS export names for ESM import in node:
|
|
1915
1955
|
0 && (module.exports = {
|
|
@@ -1946,5 +1986,6 @@ var src_default = {
|
|
|
1946
1986
|
TikiGlass,
|
|
1947
1987
|
ToddyGlass,
|
|
1948
1988
|
WhiskeyShotGlass,
|
|
1949
|
-
WineGlass
|
|
1989
|
+
WineGlass,
|
|
1990
|
+
glasses
|
|
1950
1991
|
});
|
package/dist/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ export const TikiGlass: AnyComponent;
|
|
|
39
39
|
export const ToddyGlass: AnyComponent;
|
|
40
40
|
export const WhiskeyShotGlass: AnyComponent;
|
|
41
41
|
export const WineGlass: AnyComponent;
|
|
42
|
+
export const glasses: { [key: string]: string };
|
|
42
43
|
|
|
43
44
|
declare const _default: {
|
|
44
45
|
Liquid: AnyComponent;
|
|
@@ -75,6 +76,7 @@ declare const _default: {
|
|
|
75
76
|
ToddyGlass: AnyComponent;
|
|
76
77
|
WhiskeyShotGlass: AnyComponent;
|
|
77
78
|
WineGlass: AnyComponent;
|
|
79
|
+
glasses: { [key: string]: string };
|
|
78
80
|
};
|
|
79
81
|
|
|
80
82
|
export default _default;
|
package/dist/index.mjs
CHANGED
|
@@ -1,70 +1,70 @@
|
|
|
1
|
-
import
|
|
2
|
-
M26 50 Q32 50 38 50 L36 60 L28 60 Z`,transform:"scale(0.98)",idBase:
|
|
3
|
-
M26 50 Q32 50 38 50 L36 60 L28 60 Z`,stroke:"currentColor",strokeWidth:r,fill:"none"}),
|
|
1
|
+
import L from"react";function l({d:t,transform:o,liquidFill:r=null,liquidStyle:i=null,gradientAttr:a=null,opacity:tr=.7,idBase:Er="liquidGrad",highlight:Dr=null,highlightColor:Ir="#fff7c0",level:jr=1,stopPositions:lr=null,mixed:j=!1,mixedBlend:Jr=.25,mixedOpacity:Vr=.85}){let J=!1,f=null;if(typeof a=="string"){let e=a.trim();if(e.startsWith("#"))J=!0;else if(e.startsWith("["))try{f=JSON.parse(e)}catch{f=null}else f=[e]}else Array.isArray(a)&&(f=a);(!f||!f.length)&&(r?f=Array.isArray(r)?r:[r]:f=["#93d3d8"]);let h=Dr==="liquid"||Dr==="all"?[Ir,...f]:[...f],V;if(Array.isArray(lr)&&lr.length===h.length)V=lr.map(e=>{let s=Number(e)||0;return Math.round(Math.max(0,Math.min(1,s))*100)});else{let e=Math.max(0,Math.min(1,Number(jr)||0)),s=1-e;h.length===1?V=[100]:V=h.map((n,d)=>{let u=d/Math.max(1,h.length-1);return Math.round((s+u*e)*100)})}let ir=Er;function sr(e){if(!e)return[0,0,0];let s=String(e).trim();s[0]==="#"&&(s=s.slice(1)),s.length===3&&(s=s.split("").map(d=>d+d).join(""));let n=parseInt(s,16);return[n>>16&255,n>>8&255,n&255]}function Or(e,s,n){e/=255,s/=255,n/=255;let d=Math.max(e,s,n),u=Math.min(e,s,n),p=0,_=0,K=(d+u)/2;if(d!==u){let F=d-u;switch(_=K>.5?F/(2-d-u):F/(d+u),d){case e:p=(s-n)/F+(s<n?6:0);break;case s:p=(n-e)/F+2;break;case n:p=(e-s)/F+4;break}p/=6}return[p,_,K]}function _r([e,s,n]){return"#"+[e,s,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 Kr(e,s,n){let d=sr(e),u=sr(s),p=Math.round(d[0]*(1-n)+u[0]*n),_=Math.round(d[1]*(1-n)+u[1]*n),K=Math.round(d[2]*(1-n)+u[2]*n);return _r([p,_,K])}let O=null,q=null;if(j&&!J)try{let e=null,s=-1;for(let n of h){let d=sr(n),[,u]=Or(d[0],d[1],d[2]);u>s&&(s=u,e=n)}O=e||h[0],q=h.map(n=>Kr(O,n,Math.max(0,Math.min(1,Jr))))}catch{O=h[0],q=h.slice()}return L.createElement(L.Fragment,null,!J&&L.createElement("defs",null,L.createElement("linearGradient",{id:ir,x1:"0",y1:"0",x2:"0",y2:"1"},(j&&q?q:h).map((e,s)=>L.createElement("stop",{key:s,offset:`${V[s]}%`,stopColor:e,stopOpacity:j&&q?Vr:1})))),L.createElement("path",{d:t,transform:o,className:"liquid",style:i||void 0,fill:i?void 0:J?`url(${a})`:j&&O?`url(#${ir})`:`url(#${ir})`,opacity:tr}))}import b from"react";function er({liquidFill:t=["#A8E6CF","#DCEDC2","#FFD3B6"],size:o=80,strokeWidth:r=.5,idBase:i="AbsintheGlassGrad"}){let a=Math.floor(o*1.125);return b.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90"},b.createElement(l,{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}),b.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"}),b.createElement("rect",{x:31,y:60,width:2,height:16,fill:"black",stroke:"currentColor",strokeWidth:r}),b.createElement("path",{d:" M24 77 Q32 76 40 77 L40 77 L24 77 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r,rx:r}))}import k from"react";function nr({liquidFill:t=["#F6D29A","#D98F3A"],strokeWidth:o=1,idBase:r="BrandySnifterGlassGrad"}){return k.createElement("svg",{viewBox:"0 0 64 64"},k.createElement(l,{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}),
|
|
7
|
+
Z`,transform:"scale(0.98)",idBase:r,opacity:.7,liquidFill:t}),k.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}),
|
|
13
|
+
`,fill:"none",stroke:"currentColor",strokeWidth:o}),k.createElement("line",{x1:22,y1:28,x2:42,y2:28,stroke:"currentColor",strokeWidth:o}),k.createElement("rect",{x:30,y:50,width:4,height:5,fill:"currentColor",stroke:"currentColor",strokeWidth:o}),k.createElement("path",{d:"M24 55 Q32 54 40 55 L40 55 L24 55 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import x from"react";function ar({liquidFill:t=["#FFF7C0","#FFD27A"],strokeWidth:o=.5,idBase:r="CollinsGlassGrad"}){return x.createElement("svg",{viewBox:"0 0 64 64"},x.createElement(l,{d:"M22 10 L42 10 L42 54 L22 54 Z",transform:"scale(0.98)",idBase:r,opacity:.7,liquidFill:t}),x.createElement("line",{x1:22,y1:10,x2:22,y2:54,stroke:"currentColor",strokeWidth:o}),x.createElement("line",{x1:42,y1:10,x2:42,y2:54,stroke:"currentColor",strokeWidth:o}),x.createElement("line",{x1:21.76,y1:10,x2:42.24,y2:10,stroke:"currentColor",strokeWidth:o}),x.createElement("rect",{x:22,y:54,width:20,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import W from"react";function dr({size:t=80,strokeWidth:o=.5,fill:r="#B87333"}){return W.createElement("svg",{width:t,height:t,viewBox:"0 0 64 64"},W.createElement("path",{d:"M47 23 C68 23 68 52 46.5 50",fill:"none",stroke:r,strokeWidth:o+2}),W.createElement("path",{d:`
|
|
14
14
|
M18 16
|
|
15
15
|
L46 16
|
|
16
16
|
C48 24 48 40 46 56
|
|
17
17
|
L18 56
|
|
18
18
|
C16 40 16 24 18 16
|
|
19
19
|
Z
|
|
20
|
-
`,transform:"scale(0.98)",fill:r}),
|
|
20
|
+
`,transform:"scale(0.98)",fill:r}),W.createElement("path",{d:`
|
|
21
21
|
M18 16
|
|
22
22
|
L46 16
|
|
23
23
|
C48 24 48 40 46 56
|
|
24
24
|
L18 56
|
|
25
25
|
C16 40 16 24 18 16
|
|
26
26
|
Z
|
|
27
|
-
`,fill:"none",stroke:r,strokeWidth:o}),
|
|
27
|
+
`,fill:"none",stroke:r,strokeWidth:o}),W.createElement("line",{x1:18,y1:16,x2:46,y2:16,stroke:r,strokeWidth:o}))}import G from"react";var Ur={colors:{accent:{200:"#ffd180",500:"#e67e22"},warning:"#ffb300",success:"#4caf50",error:"#e53935",dark:{400:"#616161",700:"#212121",900:"#121212"}}};try{global.theme=Ur}catch{}function ur({liquidFill:t=null,strokeWidth:o=.5,idBase:r="CordialGlassGrad"}){return G.createElement("svg",{viewBox:"0 0 64 64"},G.createElement(l,{d:"M30 16 L35 16 Q34 25 31 26 Q30 26 28 16 Z",transform:"scale(0.98)",idBase:r,opacity:.7,liquidFill:t}),G.createElement("path",{d:"M28 16 L36 16 Q34 26 32 26 Q30 26 28 16 Z",stroke:"currentColor",strokeWidth:o,fill:"none"}),G.createElement("rect",{x:31.8,y:26,width:.5,height:6,fill:"currentColor",stroke:"currentColor",strokeWidth:o}),G.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)"}),G.createElement("path",{d:"M28 32 Q32 31 36 32 L36 32 L28 32 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:o}))}import $ from"react";function fr({liquidFill:t=null,size:o=80,strokeWidth:r=1,idBase:i="CoupeGlassGrad"}){return $.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},$.createElement(l,{d:`
|
|
28
28
|
M12 32 Q32 36 52 32 L52 18 Q32 18 12 18 Z
|
|
29
|
-
`,transform:"scale(0.98)",idBase:
|
|
29
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),$.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}),$.createElement("path",{d:"M32 34 L32 60",stroke:"currentColor",strokeWidth:r}),$.createElement("path",{d:"M24 60 Q32 59 40 60 L40 60 L24 60 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import
|
|
31
|
+
`,fill:"none",stroke:"currentColor",strokeWidth:r}),$.createElement("path",{d:"M32 34 L32 60",stroke:"currentColor",strokeWidth:r}),$.createElement("path",{d:"M24 60 Q32 59 40 60 L40 60 L24 60 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import T from"react";function hr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="DemitasseGlassGrad"}){return T.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},T.createElement("path",{d:"M20 24 L24 45 L40 45 L44 24 Z",fill:"none",stroke:"currentColor",strokeLinejoin:"miter",strokeWidth:r}),T.createElement(l,{d:"M20 24 L24 45 L40 45 L44 24 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),T.createElement("path",{d:"M43 30 Q55 30 41 40",stroke:"currentColor",fill:"none",strokeWidth:r}),T.createElement("path",{d:"M24 45 Q32 45 40 45 L40 48 L24 48 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import U from"react";function mr({liquidFill:t=["#FFF7C0","#FFD27A"],size:o=64,strokeWidth:r=.5,idBase:i="DoubleShotGlassGrad"}){return U.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},U.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}),U.createElement(l,{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}),U.createElement("rect",{x:22.5,y:58,width:19,height:3,fill:"none",stroke:"currentColor",strokeWidth:r}))}import y from"react";function pr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="FizzGlassGrad"}){return y.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},y.createElement("path",{d:"M22 10 L42 10",stroke:"currentColor",strokeWidth:r}),y.createElement(l,{d:`
|
|
32
32
|
M22 10 L24 23 L40 23 L42 10 Z
|
|
33
|
-
`,transform:"scale(0.98)",idBase:
|
|
33
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),y.createElement("path",{d:`
|
|
34
34
|
M22 10 L24 23 L40 23 L42 10 Z
|
|
35
|
-
`,fill:"none",stroke:"currentColor",strokeWidth:r}),
|
|
35
|
+
`,fill:"none",stroke:"currentColor",strokeWidth:r}),y.createElement("rect",{x:32,y:23,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),y.createElement("path",{d:"M26 33 Q32 32 38 33 L38 33 L26 33 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import A from"react";function cr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="FluteGlassGrad"}){return A.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},A.createElement(l,{d:`
|
|
36
36
|
M30 12
|
|
37
37
|
L34 12
|
|
38
38
|
L36 36
|
|
39
39
|
Q32 38 28 36
|
|
40
40
|
Z
|
|
41
|
-
`,transform:"scale(0.98)",idBase:
|
|
41
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),A.createElement("path",{d:`
|
|
42
42
|
M30 12
|
|
43
43
|
L34 12
|
|
44
44
|
L36 36
|
|
45
45
|
Q32 38 28 36
|
|
46
46
|
Z
|
|
47
|
-
`,fill:"none",stroke:"currentColor",strokeWidth:r}),
|
|
47
|
+
`,fill:"none",stroke:"currentColor",strokeWidth:r}),A.createElement("rect",{x:32,y:37,width:r,height:16,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),A.createElement("path",{d:"M26 53 Q32 52 38 53 L38 53 L26 53 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import M from"react";function gr({liquidFill:t=null,size:o=80,strokeWidth:r=2,idBase:i="GobletGlassGrad"}){let a=Math.round(o*90/80);return M.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90"},M.createElement("rect",{x:30.5,y:69,width:3,height:8,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),M.createElement(l,{d:" M19 28 L46 28 Q52 58 32 70 Q12 58 16 28 Z ",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),M.createElement("path",{d:`
|
|
48
48
|
M16 28
|
|
49
49
|
L48 28
|
|
50
50
|
Q52 58 32 70
|
|
51
51
|
Q12 58 16 28
|
|
52
52
|
Z
|
|
53
|
-
`,fill:"none",stroke:"currentColor",strokeWidth:r}),
|
|
53
|
+
`,fill:"none",stroke:"currentColor",strokeWidth:r}),M.createElement("line",{x1:16,y1:28,x2:48,y2:28,stroke:"currentColor",strokeWidth:r}),M.createElement("path",{d:" M24 77 Q32 76 40 77 L40 77 L24 77 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import X from"react";function Cr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="HighballGlassGrad"}){return X.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},X.createElement(l,{d:"M18 10 L46 10 L46 60 L18 60 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),X.createElement("rect",{x:18,y:10,width:28,height:50,stroke:"currentColor",strokeWidth:r,fill:"none"}),X.createElement("rect",{x:18,y:60,width:28,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}))}import H from"react";function Lr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=.5,idBase:a="HurricaneGlassGrad"}){return H.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64"},H.createElement(l,{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}),H.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}),H.createElement("rect",{x:30.5,y:47,width:3,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:i}),H.createElement("path",{d:"M26 57 Q32 56 38 57 L38 57 L26 57 Z",fill:"currentColor",stroke:"currentColor",strokeWidth:i}))}import w from"react";function kr({liquidFill:t=null,size:o=80,strokeWidth:r=2,idBase:i="IrishCoffeeGlassGrad"}){return w.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},w.createElement("path",{d:" M42 18 Q60 20 44 30 ",stroke:"currentColor",strokeWidth:r,fill:"none"}),w.createElement(l,{d:`
|
|
54
54
|
M22 16
|
|
55
55
|
L42 16
|
|
56
56
|
L44 30
|
|
57
57
|
Q44 38 32 42
|
|
58
58
|
Q20 38 20 30
|
|
59
59
|
Z
|
|
60
|
-
`,transform:"scale(0.98)",idBase:
|
|
60
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),w.createElement("path",{d:`
|
|
61
61
|
M22 16
|
|
62
62
|
L42 16
|
|
63
63
|
L44 30
|
|
64
64
|
Q44 38 32 42
|
|
65
65
|
Q20 38 20 30
|
|
66
66
|
Z
|
|
67
|
-
`,stroke:"currentColor",strokeWidth:r-1,fill:"none"}),w.createElement("rect",{x:31,y:42,width:2,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),w.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
|
|
67
|
+
`,stroke:"currentColor",strokeWidth:r-1,fill:"none"}),w.createElement("rect",{x:31,y:42,width:2,height:2,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),w.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 xr({fill:t="#a1a1a1",size:o=80,strokeWidth:r=.5}){return m.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},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:`
|
|
68
68
|
M18 22
|
|
69
69
|
L46 22
|
|
70
70
|
L42 54
|
|
@@ -76,15 +76,15 @@ import g from"react";function i({d:t,transform:o,liquidFill:r=null,liquidStyle:l
|
|
|
76
76
|
L42 54
|
|
77
77
|
L22 54
|
|
78
78
|
Z
|
|
79
|
-
`,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 P from"react";function Gr({liquidFill:t=["#A8E063","#56AB2F"],size:o=80,strokeWidth:r=.5,idBase:
|
|
80
|
-
M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,fill:"none",stroke:"currentColor",strokeWidth:r}),P.createElement("rect",{x:31.5,y:36,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),P.createElement("path",{d:" M24 46 Q32 45 40 46 L40 47 L24 47 Z ",fill:"currentColor",strokeWidth:0}))}import
|
|
79
|
+
`,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 P from"react";function Gr({liquidFill:t=["#A8E063","#56AB2F"],size:o=80,strokeWidth:r=.5,idBase:i="MargaritaGlassGrad"}){let a=t;return P.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},P.createElement(l,{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}),P.createElement("path",{d:`M14 18 L50 18 Q46 28 36 29 Q30 30 28 29 Q18 28 14 18 Z
|
|
80
|
+
M28 29 Q32 29 36 29 Q38 34 32 36 Q26 34 28 29 Z`,fill:"none",stroke:"currentColor",strokeWidth:r}),P.createElement("rect",{x:31.5,y:36,width:1,height:10,fill:"currentColor",stroke:"currentColor",strokeWidth:r}),P.createElement("path",{d:" M24 46 Q32 45 40 46 L40 47 L24 47 Z ",fill:"currentColor",strokeWidth:0}))}import D from"react";function yr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=1,idBase:a="MartiniGlassGrad"}){return D.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64"},D.createElement(l,{d:"M10 10 L54 10 L32 40 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),D.createElement("path",{d:"M10 10 L54 10 L32 40 Z",stroke:"currentColor",fill:"none",strokeWidth:i}),D.createElement("path",{d:"M32 40 L32 58",stroke:"currentColor",strokeWidth:i}),D.createElement("path",{d:" M24 58 Q32 57 40 58 L40 59 L24 59 Z ",fill:"currentColor"}))}import N from"react";function Mr({liquidFill:t=null,garnish:o=null,size:r=80,strokeWidth:i=.5,idBase:a="NickAndNoraGlassGrad"}){return N.createElement("svg",{width:r,height:r,viewBox:"0 0 64 64"},N.createElement(l,{d:"M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",transform:"scale(0.98)",idBase:a,opacity:.7,liquidFill:t}),N.createElement("path",{d:"M24 38 L24 24 L40 24 L40 38 Q32 40 24 38 Z",fill:"none",stroke:"currentColor",strokeWidth:i}),N.createElement("rect",{x:32,y:39,width:1,height:16,fill:"currentColor",stroke:"currentColor",strokeWidth:i}),N.createElement("path",{d:" M24 55 Q32 54 40 55 L40 55 L24 55 Z ",fill:"currentColor",stroke:"currentColor",strokeWidth:i}))}import E from"react";function wr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="ParfaitGlassGrad"}){return E.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},E.createElement(l,{d:`
|
|
81
81
|
M22 12
|
|
82
82
|
L42 12
|
|
83
83
|
Q40 30 38 44
|
|
84
84
|
Q32 50 26 44
|
|
85
85
|
Q24 30 22 12
|
|
86
86
|
Z
|
|
87
|
-
`,transform:"scale(0.98)",idBase:
|
|
87
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),E.createElement("path",{d:`
|
|
88
88
|
M22 12
|
|
89
89
|
L42 12
|
|
90
90
|
Q40 30 38 44
|
|
@@ -93,13 +93,13 @@ import g from"react";function i({d:t,transform:o,liquidFill:r=null,liquidStyle:l
|
|
|
93
93
|
Z
|
|
94
94
|
`,stroke:"currentColor",strokeWidth:r,fill:"none"}),E.createElement("rect",{x:31,y:47,width:2,height:8,fill:"currentColor"}),E.createElement("path",{d:`
|
|
95
95
|
M22 57 Q32 53 42 57 L42 57.5 L22 57.5 Z
|
|
96
|
-
`,fill:"currentColor"}))}import Y from"react";function vr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:
|
|
96
|
+
`,fill:"currentColor"}))}import Y from"react";function vr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="PilsnerGlassGrad"}){return Y.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},Y.createElement(l,{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}),Y.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"}),Y.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"},z.createElement(l,{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"},c.createElement("g",null,c.createElement(l,{d:`
|
|
97
97
|
M ${32-11} 12
|
|
98
98
|
L ${32+11} 12
|
|
99
99
|
L ${32+9} 38
|
|
100
100
|
Q 32 42 ${32-9} 38
|
|
101
101
|
Z
|
|
102
|
-
`,transform:"scale(0.98)",idBase:
|
|
102
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),c.createElement("path",{d:`
|
|
103
103
|
M ${32-11} 12
|
|
104
104
|
L ${32+11} 12
|
|
105
105
|
L ${32+9} 38
|
|
@@ -111,32 +111,32 @@ import g from"react";function i({d:t,transform:o,liquidFill:r=null,liquidStyle:l
|
|
|
111
111
|
L ${32+6} 30
|
|
112
112
|
Q 32 33 ${32-6} 30
|
|
113
113
|
Z
|
|
114
|
-
`,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
|
|
114
|
+
`,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"},g.createElement("g",null,g.createElement(l,{d:`
|
|
115
115
|
M22 18
|
|
116
116
|
L42 18
|
|
117
117
|
L38 30
|
|
118
118
|
Q32 34 26 30
|
|
119
119
|
L22 18
|
|
120
120
|
Z
|
|
121
|
-
`,transform:"scale(0.98)",idBase:
|
|
121
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),g.createElement("path",{d:`
|
|
122
122
|
M22 18
|
|
123
123
|
L42 18
|
|
124
124
|
L38 30
|
|
125
125
|
Q32 34 26 30
|
|
126
126
|
L22 18
|
|
127
127
|
Z
|
|
128
|
-
`,stroke:"currentColor",strokeWidth:r,fill:"none"}),
|
|
128
|
+
`,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 Sr({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"},R.createElement(l,{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 qr({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"},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(l,{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 v from"react";function Fr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="SlingGlassGrad"}){return v.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},v.createElement("line",{x1:24,y1:12,x2:40,y2:12,stroke:"currentColor",strokeWidth:r}),v.createElement(l,{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}),v.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"}),v.createElement("rect",{x:31,y:54,width:2,height:2,fill:"currentColor"}),v.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 br({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"},Z.createElement("line",{x1:22,y1:18,x2:42,y2:18,stroke:"currentColor",strokeWidth:r}),Z.createElement("path",{d:`
|
|
129
129
|
M22 18
|
|
130
130
|
C16 32, 16 46, 32 52
|
|
131
131
|
C48 46, 48 32, 42 18
|
|
132
132
|
Z
|
|
133
|
-
`,stroke:"currentColor",strokeWidth:r,fill:"none"}),Z.createElement(
|
|
133
|
+
`,stroke:"currentColor",strokeWidth:r,fill:"none"}),Z.createElement(l,{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 Wr({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"},Q.createElement("line",{x1:16,y1:18,x2:48,y2:18,stroke:"currentColor",strokeWidth:r}),Q.createElement(l,{d:`
|
|
134
134
|
M16 18
|
|
135
135
|
L48 18
|
|
136
136
|
C46 30, 46 38, 32 42
|
|
137
137
|
C18 38, 18 30, 16 18
|
|
138
138
|
Z
|
|
139
|
-
`,transform:"scale(0.98)",idBase:
|
|
139
|
+
`,transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),Q.createElement("path",{d:`
|
|
140
140
|
M16 18
|
|
141
141
|
L48 18
|
|
142
142
|
C46 30, 46 38, 32 42
|
|
@@ -148,4 +148,4 @@ import g from"react";function i({d:t,transform:o,liquidFill:r=null,liquidStyle:l
|
|
|
148
148
|
L42 54
|
|
149
149
|
L22 54
|
|
150
150
|
Z
|
|
151
|
-
`,fill:"currentColor"}))}import B from"react";function $r({liquidFill:t=null,size:o=80,strokeWidth:r=1,idBase:
|
|
151
|
+
`,fill:"currentColor"}))}import B from"react";function $r({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"},B.createElement("rect",{x:13,y:44,width:36,height:4,fill:"currentColor"}),B.createElement(l,{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 S from"react";function Tr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="TikiGlassGrad"}){return S.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},S.createElement("rect",{x:21.75,y:52,width:20.5,height:2,fill:"currentColor"}),S.createElement("rect",{x:20,y:50,width:24,height:4,rx:2,fill:"currentColor",opacity:.06}),S.createElement("rect",{x:22,y:10,width:20,height:42,stroke:"currentColor",strokeWidth:r,fill:"none",opacity:.9}),S.createElement(l,{d:"M21 9 L41 9 L41 51 L21 51 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),S.createElement("ellipse",{cx:32,cy:32,rx:6,ry:3,fill:"currentColor"}))}import C from"react";function Ar({liquidFill:t=null,size:o=80,strokeWidth:r=.8,idBase:i="ToddyGlassGrad"}){return C.createElement("svg",{width:o,height:o,viewBox:"0 0 64 64"},C.createElement(l,{d:"M22 12 H42 V40 H22 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),C.createElement("path",{d:"M22 12 H42 V40 H22 Z",fill:"none",stroke:"currentColor",strokeWidth:r,strokeLinejoin:"round"}),C.createElement("g",null,C.createElement("path",{d:"M43 16 C52 18 52 34 43 36",stroke:"currentColor",strokeWidth:r*2.4,strokeLinecap:"round",strokeLinejoin:"round",fill:"none"})),C.createElement("rect",{x:30,y:40,width:4,height:6,fill:"currentColor"}),C.createElement("path",{d:"M22 47 Q32 43 42 47 L42 48 L22 48 Z",fill:"currentColor"}))}import or from"react";function Hr({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"},or.createElement("rect",{x:22,y:30,width:20,height:18,stroke:"currentColor",fill:"none",strokeWidth:r}),or.createElement(l,{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 I from"react";function Pr({liquidFill:t=null,size:o=80,strokeWidth:r=.5,idBase:i="WineGlassGrad"}){let a=Math.round(o*90/80);return I.createElement("svg",{width:o,height:a,viewBox:"0 0 64 90"},I.createElement(l,{d:"M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",transform:"scale(0.98)",idBase:i,opacity:.7,liquidFill:t}),I.createElement("path",{d:"M26 26 L38 26 Q44 62 32 62 Q20 62 26 26 Z",fill:"none",stroke:"currentColor",strokeWidth:r}),I.createElement("rect",{x:31.5,y:62,width:1,height:25,fill:"currentColor"}),I.createElement("path",{d:"M24 86 Q32 84 40 86 L40 87 L24 87 Z",fill:"currentColor"}))}var Xr={AbsintheGlass:"Tall narrow glass traditionally used for absinthe",BrandySnifterGlass:"Short, wide bowl for brandy and aromatics",CollinsGlass:"Tall, slim highball-style glass for long drinks",CopperMug:"Insulated mug commonly used for Moscow Mules",CordialGlass:"Small stemmed glass for cordials and liqueurs",CoupeGlass:"Shallow, broad-bowled stemmed glass for cocktails",DemitasseGlass:"Tiny cup used for espresso or small servings",DoubleShotGlass:"Small glass sized for a double shot or liqueur",FizzGlass:"Tall glass for fizzy, highball-like cocktails",FluteGlass:"Narrow stemmed glass for sparkling cocktails or champagne",GobletGlass:"Large bowl stemmed glass for water or wine-style serves",HighballGlass:"Tall glass for mixed drinks over ice",HurricaneGlass:"Curved glass used for tropical, rum-forward drinks",IrishCoffeeGlass:"Handled glass for hot cocktails like Irish Coffee",JulepCup:"Silver or metal cup for mint juleps served over crushed ice",MargaritaGlass:"Broad-rimmed glass typically used for margaritas",MartiniGlass:"Classic conical stemmed glass for martinis and cocktails",NickAndNoraGlass:"Small stemmed cocktail glass named for film characters",ParfaitGlass:"Tall, elegant glass for layered desserts or cocktails",PilsnerGlass:"Tall tapered glass for pilsner-style beers",PintGlass:"Standard pint glass for beer servings",PousseCafeGlass:"Very tall, narrow glass for layered pousse-caf\xE9s",PunchGlass:"Large bowl or glass used for punch servings",RocksGlass:"Short, wide glass for spirits served over ice",SingleShotGlass:"Small single-shot glass for neat pours",SlingGlass:"Stemmed glass used historically for sling cocktails",SnifterGlass:"Rounded glass for nosing spirits like brandy or cognac",SourGlass:"Stemmed glass for sours and shaken cocktails",TankardGlass:"Large handled mug, often used for beer",TikiGlass:"Themed ceramic or glass mug for tiki-style cocktails",ToddyGlass:"Handled mug for hot toddies and warm drinks",WhiskeyShotGlass:"Small glass for whiskey shots",WineGlass:"Standard stemmed glass for wine service"},Nr=Xr;var fi={Liquid:l,AbsintheGlass:er,BrandySnifterGlass:nr,CollinsGlass:ar,CopperMug:dr,CordialGlass:ur,CoupeGlass:fr,DemitasseGlass:hr,DoubleShotGlass:mr,FizzGlass:pr,FluteGlass:cr,GobletGlass:gr,HighballGlass:Cr,HurricaneGlass:Lr,IrishCoffeeGlass:kr,JulepCup:xr,MargaritaGlass:Gr,MartiniGlass:yr,NickAndNoraGlass:Mr,ParfaitGlass:wr,PilsnerGlass:vr,PintGlass:Zr,PousseCafeGlass:Qr,PunchGlass:Br,RocksGlass:Sr,SingleShotGlass:qr,SlingGlass:Fr,SnifterGlass:br,SourGlass:Wr,TankardGlass:$r,TikiGlass:Tr,ToddyGlass:Ar,WhiskeyShotGlass:Hr,WineGlass:Pr,glasses:Nr};export{er 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,Cr as HighballGlass,Lr as HurricaneGlass,kr as IrishCoffeeGlass,xr as JulepCup,l as Liquid,Gr as MargaritaGlass,yr as MartiniGlass,Mr as NickAndNoraGlass,wr as ParfaitGlass,vr as PilsnerGlass,Zr as PintGlass,Qr as PousseCafeGlass,Br as PunchGlass,Sr as RocksGlass,qr as SingleShotGlass,Fr as SlingGlass,br as SnifterGlass,Wr as SourGlass,$r as TankardGlass,Tr as TikiGlass,Ar as ToddyGlass,Hr as WhiskeyShotGlass,Pr as WineGlass,fi as default,Nr as glasses};
|