@tamagui/demos 1.0.1-beta.76 → 1.0.1-beta.77
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/cjs/TamaguiLogo.js +2 -9
- package/dist/cjs/TamaguiLogo.js.map +2 -2
- package/dist/esm/TamaguiLogo.js +2 -9
- package/dist/esm/TamaguiLogo.js.map +2 -2
- package/dist/jsx/TamaguiLogo.js +52 -55
- package/package.json +5 -5
- package/src/TamaguiLogo.tsx +54 -63
- package/types/TamaguiLogo.d.ts.map +1 -1
package/dist/cjs/TamaguiLogo.js
CHANGED
|
@@ -147,16 +147,9 @@ const LogoIcon = ({ downscale = 2, color = "var(--color)" }) => {
|
|
|
147
147
|
xmlns: "http://www.w3.org/2000/svg",
|
|
148
148
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
149
149
|
}, /* @__PURE__ */ import_react.default.createElement("g", {
|
|
150
|
-
transform: "translate(-150.000000, -210.000000)"
|
|
151
|
-
}, /* @__PURE__ */ import_react.default.createElement("g", {
|
|
152
|
-
transform: "translate(150.000000, 210.000000)"
|
|
153
|
-
}, /* @__PURE__ */ import_react.default.createElement("g", {
|
|
154
|
-
transform: "translate(30.000000, 30.000000)",
|
|
155
|
-
fill: color
|
|
156
|
-
}), /* @__PURE__ */ import_react.default.createElement("g", {
|
|
157
150
|
transform: "translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) ",
|
|
158
151
|
fill: color
|
|
159
|
-
}, /* @__PURE__ */ import_react.default.createElement("
|
|
152
|
+
}, /* @__PURE__ */ import_react.default.createElement("rect", {
|
|
160
153
|
fill: color,
|
|
161
154
|
x: "150",
|
|
162
155
|
y: "0",
|
|
@@ -456,7 +449,7 @@ const LogoIcon = ({ downscale = 2, color = "var(--color)" }) => {
|
|
|
456
449
|
y: "60",
|
|
457
450
|
width: "20",
|
|
458
451
|
height: "20"
|
|
459
|
-
}))))
|
|
452
|
+
}))));
|
|
460
453
|
};
|
|
461
454
|
// Annotate the CommonJS export names for ESM import in node:
|
|
462
455
|
0 && (module.exports = {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/TamaguiLogo.tsx"],
|
|
4
|
-
"sourcesContent": ["import React, { forwardRef } from 'react'\nimport { ThemeName, XStack, XStackProps, YStack } from 'tamagui'\n\nexport const tints: ThemeName[] = ['red', 'orange', 'yellow', 'green', 'blue', 'purple', 'pink']\n\nexport const logoColors = tints.map((t) => `var(--${t}9)`)\n\nexport const TamaguiLogo = forwardRef(\n (\n {\n showWords,\n color,\n downscale,\n onHoverLetter,\n ...props\n }: {\n onHoverLetter?: (i: number) => void\n showWords?: boolean\n color?: string\n downscale?: number\n } & XStackProps,\n ref\n ) => (\n <XStack ref={ref} ai=\"center\" jc=\"center\" space=\"$5\" {...props}>\n <LogoIcon downscale={(downscale ?? 1) * (showWords ? 2 : 1.5)} color={color} />\n {showWords && (\n <YStack mb={-4}>\n <LogoWords onHoverLetter={onHoverLetter} downscale={downscale ?? 2} color={color} />\n </YStack>\n )}\n </XStack>\n )\n)\n\nexport const LogoWords = ({\n color,\n downscale = 1,\n onHoverLetter,\n}: {\n color?: string\n downscale?: number\n onHoverLetter?: any\n}) => {\n return (\n <svg\n width={373 * (1 / downscale) * 0.333333334}\n height={41 * (1 / downscale) * 0.333333334}\n viewBox=\"0 0 373 41\"\n >\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[0]}\n points=\"24.3870968 40.1612903 24.3870968 8.67741935 32.2580645 8.67741935 32.2580645 0.806451613 0.774193548 0.806451613 0.774193548 8.67741935 8.64516129 8.67741935 8.64516129 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(0) : undefined}\n />\n <path\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[1]}\n d=\"M87.3548387,0.806451613 L87.3548387,8.67741935 L95.2258065,8.67741935 L95.2258065,40.1612903 L79.483871,40.1612903 L79.483871,24.4193548 L71.6129032,24.4193548 L71.6129032,40.1612903 L55.8709677,40.1612903 L55.8709677,8.67741935 L63.7419355,8.67741935 L63.7419355,0.806451613 L87.3548387,0.806451613 Z M79.483871,8.67741935 L71.6129032,8.67741935 L71.6129032,16.5483871 L79.483871,16.5483871 L79.483871,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(1) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[2]}\n points=\"130.645161 40.1612903 130.645161 22.4516129 138.516129 22.4516129 138.516129 40.1612903 154.258065 40.1612903 154.258065 0.806451613 142.451613 0.806451613 142.451613 8.67741935 126.709677 8.67741935 126.709677 0.806451613 114.903226 0.806451613 114.903226 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(2) : undefined}\n />\n <path\n fill={color || logoColors[3]}\n d=\"M205.419355,0.806451613 L205.419355,8.67741935 L213.290323,8.67741935 L213.290323,40.1612903 L197.548387,40.1612903 L197.548387,24.4193548 L189.677419,24.4193548 L189.677419,40.1612903 L173.935484,40.1612903 L173.935484,8.67741935 L181.806452,8.67741935 L181.806452,0.806451613 L205.419355,0.806451613 Z M197.548387,8.67741935 L189.677419,8.67741935 L189.677419,16.5483871 L197.548387,16.5483871 L197.548387,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(3) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[4]}\n points=\"264.451613 40.1612903 264.451613 32.2903226 272.322581 32.2903226 272.322581 16.5483871 256.580645 16.5483871 256.580645 32.2903226 248.709677 32.2903226 248.709677 8.67741935 272.322581 8.67741935 272.322581 0.806451613 240.83871 0.806451613 240.83871 8.67741935 232.967742 8.67741935 232.967742 32.2903226 240.83871 32.2903226 240.83871 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(4) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[5]}\n points=\"323.483871 40.1612903 323.483871 32.2903226 331.354839 32.2903226 331.354839 0.806451613 315.612903 0.806451613 315.612903 32.2903226 307.741935 32.2903226 307.741935 0.806451613 292 0.806451613 292 32.2903226 299.870968 32.2903226 299.870968 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(5) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[6]}\n points=\"372.677419 40.1612903 372.677419 0.806451613 356.935484 0.806451613 356.935484 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(6) : undefined}\n />\n </svg>\n )\n // return <Image width={206 / 2} height={31 / 2} src={logo.src} />\n}\n\nexport const LogoIcon = ({ downscale = 2, color = 'var(--color)' }: any) => {\n return (\n <YStack\n als=\"center\"\n marginVertical={-10}\n pressStyle={{\n opacity: 0.7,\n }}\n >\n <svg\n width={450 / 8 / downscale}\n height={420 / 8 / downscale}\n viewBox=\"0 0 450 420\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\"\n >\n <g transform=\"translate(-150.000000, -210.000000)\">\n <g transform=\"translate(150.000000, 210.000000)\">\n <g transform=\"translate(30.000000, 30.000000)\" fill={color}>\n {/* <path d=\"M300,0 L300,30 L364,30 L364,60 L420,60 L420,150 L364,150 L364,180 L300,180 L300,300 L270,300 L270,360 L60,360 L60,300 L0,300 L0,60 L60,60 L60,0 L300,0 Z\"></path> */}\n </g>\n <g\n transform=\"translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) \"\n fill={color}\n >\n <g>\n <rect fill={color} x=\"150\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"60\" width=\"20\" height=\"20\"></rect>\n </g>\n </g>\n </g>\n </g>\n </svg>\n </YStack>\n )\n}\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAkC;AAClC,qBAAuD;AAEhD,MAAM,QAAqB,CAAC,OAAO,UAAU,UAAU,SAAS,QAAQ,UAAU,MAAM;AAExF,MAAM,aAAa,MAAM,IAAI,CAAC,MAAM,SAAS,KAAK;AAElD,MAAM,cAAc,6BACzB,CACE,IAYA,QACA;AAbA,eACE;AAAA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,MAJF,IAKK,kBALL,IAKK;AAAA,IAJH;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAUF,4DAAC;AAAA,IAAO;AAAA,IAAU,IAAG;AAAA,IAAS,IAAG;AAAA,IAAS,OAAM;AAAA,KAAS,QACvD,mDAAC;AAAA,IAAS,WAAY,cAAa,KAAM,aAAY,IAAI;AAAA,IAAM;AAAA,GAAc,GAC5E,aACC,mDAAC;AAAA,IAAO,IAAI;AAAA,KACV,mDAAC;AAAA,IAAU;AAAA,IAA8B,WAAW,aAAa;AAAA,IAAG;AAAA,GAAc,CACpF,CAEJ;AAAA,CAEJ;AAEO,MAAM,YAAY,CAAC;AAAA,EACxB;AAAA,EACA,YAAY;AAAA,EACZ;AAAA,MAKI;AACJ,SACE,mDAAC;AAAA,IACC,OAAO,MAAO,KAAI,aAAa;AAAA,IAC/B,QAAQ,KAAM,KAAI,aAAa;AAAA,IAC/B,SAAQ;AAAA,KAER,mDAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,mDAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,GAAE;AAAA,IACF,UAAS;AAAA,IACT,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,mDAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,mDAAC;AAAA,IACC,MAAM,SAAS,WAAW;AAAA,IAC1B,GAAE;AAAA,IACF,UAAS;AAAA,IACT,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,mDAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,mDAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,mDAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,CACF;AAGJ;AAEO,MAAM,WAAW,CAAC,EAAE,YAAY,GAAG,QAAQ,qBAA0B;AAC1E,SACE,mDAAC;AAAA,IACC,KAAI;AAAA,IACJ,gBAAgB;AAAA,IAChB,YAAY;AAAA,MACV,SAAS;AAAA,IACX;AAAA,KAEA,mDAAC;AAAA,IACC,OAAO,MAAM,IAAI;AAAA,IACjB,QAAQ,MAAM,IAAI;AAAA,IAClB,SAAQ;AAAA,IACR,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,YAAW;AAAA,KAEX,mDAAC;AAAA,
|
|
4
|
+
"sourcesContent": ["import React, { forwardRef } from 'react'\nimport { ThemeName, XStack, XStackProps, YStack } from 'tamagui'\n\nexport const tints: ThemeName[] = ['red', 'orange', 'yellow', 'green', 'blue', 'purple', 'pink']\n\nexport const logoColors = tints.map((t) => `var(--${t}9)`)\n\nexport const TamaguiLogo = forwardRef(\n (\n {\n showWords,\n color,\n downscale,\n onHoverLetter,\n ...props\n }: {\n onHoverLetter?: (i: number) => void\n showWords?: boolean\n color?: string\n downscale?: number\n } & XStackProps,\n ref\n ) => (\n <XStack ref={ref} ai=\"center\" jc=\"center\" space=\"$5\" {...props}>\n <LogoIcon downscale={(downscale ?? 1) * (showWords ? 2 : 1.5)} color={color} />\n {showWords && (\n <YStack mb={-4}>\n <LogoWords onHoverLetter={onHoverLetter} downscale={downscale ?? 2} color={color} />\n </YStack>\n )}\n </XStack>\n )\n)\n\nexport const LogoWords = ({\n color,\n downscale = 1,\n onHoverLetter,\n}: {\n color?: string\n downscale?: number\n onHoverLetter?: any\n}) => {\n return (\n <svg\n width={373 * (1 / downscale) * 0.333333334}\n height={41 * (1 / downscale) * 0.333333334}\n viewBox=\"0 0 373 41\"\n >\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[0]}\n points=\"24.3870968 40.1612903 24.3870968 8.67741935 32.2580645 8.67741935 32.2580645 0.806451613 0.774193548 0.806451613 0.774193548 8.67741935 8.64516129 8.67741935 8.64516129 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(0) : undefined}\n />\n <path\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[1]}\n d=\"M87.3548387,0.806451613 L87.3548387,8.67741935 L95.2258065,8.67741935 L95.2258065,40.1612903 L79.483871,40.1612903 L79.483871,24.4193548 L71.6129032,24.4193548 L71.6129032,40.1612903 L55.8709677,40.1612903 L55.8709677,8.67741935 L63.7419355,8.67741935 L63.7419355,0.806451613 L87.3548387,0.806451613 Z M79.483871,8.67741935 L71.6129032,8.67741935 L71.6129032,16.5483871 L79.483871,16.5483871 L79.483871,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(1) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[2]}\n points=\"130.645161 40.1612903 130.645161 22.4516129 138.516129 22.4516129 138.516129 40.1612903 154.258065 40.1612903 154.258065 0.806451613 142.451613 0.806451613 142.451613 8.67741935 126.709677 8.67741935 126.709677 0.806451613 114.903226 0.806451613 114.903226 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(2) : undefined}\n />\n <path\n fill={color || logoColors[3]}\n d=\"M205.419355,0.806451613 L205.419355,8.67741935 L213.290323,8.67741935 L213.290323,40.1612903 L197.548387,40.1612903 L197.548387,24.4193548 L189.677419,24.4193548 L189.677419,40.1612903 L173.935484,40.1612903 L173.935484,8.67741935 L181.806452,8.67741935 L181.806452,0.806451613 L205.419355,0.806451613 Z M197.548387,8.67741935 L189.677419,8.67741935 L189.677419,16.5483871 L197.548387,16.5483871 L197.548387,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(3) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[4]}\n points=\"264.451613 40.1612903 264.451613 32.2903226 272.322581 32.2903226 272.322581 16.5483871 256.580645 16.5483871 256.580645 32.2903226 248.709677 32.2903226 248.709677 8.67741935 272.322581 8.67741935 272.322581 0.806451613 240.83871 0.806451613 240.83871 8.67741935 232.967742 8.67741935 232.967742 32.2903226 240.83871 32.2903226 240.83871 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(4) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[5]}\n points=\"323.483871 40.1612903 323.483871 32.2903226 331.354839 32.2903226 331.354839 0.806451613 315.612903 0.806451613 315.612903 32.2903226 307.741935 32.2903226 307.741935 0.806451613 292 0.806451613 292 32.2903226 299.870968 32.2903226 299.870968 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(5) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[6]}\n points=\"372.677419 40.1612903 372.677419 0.806451613 356.935484 0.806451613 356.935484 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(6) : undefined}\n />\n </svg>\n )\n // return <Image width={206 / 2} height={31 / 2} src={logo.src} />\n}\n\nexport const LogoIcon = ({ downscale = 2, color = 'var(--color)' }: any) => {\n return (\n <YStack\n als=\"center\"\n marginVertical={-10}\n pressStyle={{\n opacity: 0.7,\n }}\n >\n <svg\n width={450 / 8 / downscale}\n height={420 / 8 / downscale}\n viewBox=\"0 0 450 420\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\"\n >\n <g\n transform=\"translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) \"\n fill={color}\n >\n <rect fill={color} x=\"150\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"60\" width=\"20\" height=\"20\"></rect>\n </g>\n </svg>\n </YStack>\n )\n}\n"],
|
|
5
|
+
"mappings": "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",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/esm/TamaguiLogo.js
CHANGED
|
@@ -120,16 +120,9 @@ const LogoIcon = ({ downscale = 2, color = "var(--color)" }) => {
|
|
|
120
120
|
xmlns: "http://www.w3.org/2000/svg",
|
|
121
121
|
xmlnsXlink: "http://www.w3.org/1999/xlink"
|
|
122
122
|
}, /* @__PURE__ */ React.createElement("g", {
|
|
123
|
-
transform: "translate(-150.000000, -210.000000)"
|
|
124
|
-
}, /* @__PURE__ */ React.createElement("g", {
|
|
125
|
-
transform: "translate(150.000000, 210.000000)"
|
|
126
|
-
}, /* @__PURE__ */ React.createElement("g", {
|
|
127
|
-
transform: "translate(30.000000, 30.000000)",
|
|
128
|
-
fill: color
|
|
129
|
-
}), /* @__PURE__ */ React.createElement("g", {
|
|
130
123
|
transform: "translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) ",
|
|
131
124
|
fill: color
|
|
132
|
-
}, /* @__PURE__ */ React.createElement("
|
|
125
|
+
}, /* @__PURE__ */ React.createElement("rect", {
|
|
133
126
|
fill: color,
|
|
134
127
|
x: "150",
|
|
135
128
|
y: "0",
|
|
@@ -429,7 +422,7 @@ const LogoIcon = ({ downscale = 2, color = "var(--color)" }) => {
|
|
|
429
422
|
y: "60",
|
|
430
423
|
width: "20",
|
|
431
424
|
height: "20"
|
|
432
|
-
}))))
|
|
425
|
+
}))));
|
|
433
426
|
};
|
|
434
427
|
export {
|
|
435
428
|
LogoIcon,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../src/TamaguiLogo.tsx"],
|
|
4
|
-
"sourcesContent": ["import React, { forwardRef } from 'react'\nimport { ThemeName, XStack, XStackProps, YStack } from 'tamagui'\n\nexport const tints: ThemeName[] = ['red', 'orange', 'yellow', 'green', 'blue', 'purple', 'pink']\n\nexport const logoColors = tints.map((t) => `var(--${t}9)`)\n\nexport const TamaguiLogo = forwardRef(\n (\n {\n showWords,\n color,\n downscale,\n onHoverLetter,\n ...props\n }: {\n onHoverLetter?: (i: number) => void\n showWords?: boolean\n color?: string\n downscale?: number\n } & XStackProps,\n ref\n ) => (\n <XStack ref={ref} ai=\"center\" jc=\"center\" space=\"$5\" {...props}>\n <LogoIcon downscale={(downscale ?? 1) * (showWords ? 2 : 1.5)} color={color} />\n {showWords && (\n <YStack mb={-4}>\n <LogoWords onHoverLetter={onHoverLetter} downscale={downscale ?? 2} color={color} />\n </YStack>\n )}\n </XStack>\n )\n)\n\nexport const LogoWords = ({\n color,\n downscale = 1,\n onHoverLetter,\n}: {\n color?: string\n downscale?: number\n onHoverLetter?: any\n}) => {\n return (\n <svg\n width={373 * (1 / downscale) * 0.333333334}\n height={41 * (1 / downscale) * 0.333333334}\n viewBox=\"0 0 373 41\"\n >\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[0]}\n points=\"24.3870968 40.1612903 24.3870968 8.67741935 32.2580645 8.67741935 32.2580645 0.806451613 0.774193548 0.806451613 0.774193548 8.67741935 8.64516129 8.67741935 8.64516129 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(0) : undefined}\n />\n <path\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[1]}\n d=\"M87.3548387,0.806451613 L87.3548387,8.67741935 L95.2258065,8.67741935 L95.2258065,40.1612903 L79.483871,40.1612903 L79.483871,24.4193548 L71.6129032,24.4193548 L71.6129032,40.1612903 L55.8709677,40.1612903 L55.8709677,8.67741935 L63.7419355,8.67741935 L63.7419355,0.806451613 L87.3548387,0.806451613 Z M79.483871,8.67741935 L71.6129032,8.67741935 L71.6129032,16.5483871 L79.483871,16.5483871 L79.483871,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(1) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[2]}\n points=\"130.645161 40.1612903 130.645161 22.4516129 138.516129 22.4516129 138.516129 40.1612903 154.258065 40.1612903 154.258065 0.806451613 142.451613 0.806451613 142.451613 8.67741935 126.709677 8.67741935 126.709677 0.806451613 114.903226 0.806451613 114.903226 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(2) : undefined}\n />\n <path\n fill={color || logoColors[3]}\n d=\"M205.419355,0.806451613 L205.419355,8.67741935 L213.290323,8.67741935 L213.290323,40.1612903 L197.548387,40.1612903 L197.548387,24.4193548 L189.677419,24.4193548 L189.677419,40.1612903 L173.935484,40.1612903 L173.935484,8.67741935 L181.806452,8.67741935 L181.806452,0.806451613 L205.419355,0.806451613 Z M197.548387,8.67741935 L189.677419,8.67741935 L189.677419,16.5483871 L197.548387,16.5483871 L197.548387,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(3) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[4]}\n points=\"264.451613 40.1612903 264.451613 32.2903226 272.322581 32.2903226 272.322581 16.5483871 256.580645 16.5483871 256.580645 32.2903226 248.709677 32.2903226 248.709677 8.67741935 272.322581 8.67741935 272.322581 0.806451613 240.83871 0.806451613 240.83871 8.67741935 232.967742 8.67741935 232.967742 32.2903226 240.83871 32.2903226 240.83871 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(4) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[5]}\n points=\"323.483871 40.1612903 323.483871 32.2903226 331.354839 32.2903226 331.354839 0.806451613 315.612903 0.806451613 315.612903 32.2903226 307.741935 32.2903226 307.741935 0.806451613 292 0.806451613 292 32.2903226 299.870968 32.2903226 299.870968 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(5) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[6]}\n points=\"372.677419 40.1612903 372.677419 0.806451613 356.935484 0.806451613 356.935484 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(6) : undefined}\n />\n </svg>\n )\n // return <Image width={206 / 2} height={31 / 2} src={logo.src} />\n}\n\nexport const LogoIcon = ({ downscale = 2, color = 'var(--color)' }: any) => {\n return (\n <YStack\n als=\"center\"\n marginVertical={-10}\n pressStyle={{\n opacity: 0.7,\n }}\n >\n <svg\n width={450 / 8 / downscale}\n height={420 / 8 / downscale}\n viewBox=\"0 0 450 420\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\"\n >\n <g transform=\"translate(-150.000000, -210.000000)\">\n <g transform=\"translate(150.000000, 210.000000)\">\n <g transform=\"translate(30.000000, 30.000000)\" fill={color}>\n {/* <path d=\"M300,0 L300,30 L364,30 L364,60 L420,60 L420,150 L364,150 L364,180 L300,180 L300,300 L270,300 L270,360 L60,360 L60,300 L0,300 L0,60 L60,60 L60,0 L300,0 Z\"></path> */}\n </g>\n <g\n transform=\"translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) \"\n fill={color}\n >\n <g>\n <rect fill={color} x=\"150\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"60\" width=\"20\" height=\"20\"></rect>\n </g>\n </g>\n </g>\n </g>\n </svg>\n </YStack>\n )\n}\n"],
|
|
5
|
-
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AACA;AAEO,MAAM,QAAqB,CAAC,OAAO,UAAU,UAAU,SAAS,QAAQ,UAAU,MAAM;AAExF,MAAM,aAAa,MAAM,IAAI,CAAC,MAAM,SAAS,KAAK;AAElD,MAAM,cAAc,WACzB,CACE,IAYA,QACA;AAbA,eACE;AAAA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,MAJF,IAKK,kBALL,IAKK;AAAA,IAJH;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAUF,6CAAC;AAAA,IAAO;AAAA,IAAU,IAAG;AAAA,IAAS,IAAG;AAAA,IAAS,OAAM;AAAA,KAAS,QACvD,oCAAC;AAAA,IAAS,WAAY,cAAa,KAAM,aAAY,IAAI;AAAA,IAAM;AAAA,GAAc,GAC5E,aACC,oCAAC;AAAA,IAAO,IAAI;AAAA,KACV,oCAAC;AAAA,IAAU;AAAA,IAA8B,WAAW,aAAa;AAAA,IAAG;AAAA,GAAc,CACpF,CAEJ;AAAA,CAEJ;AAEO,MAAM,YAAY,CAAC;AAAA,EACxB;AAAA,EACA,YAAY;AAAA,EACZ;AAAA,MAKI;AACJ,SACE,oCAAC;AAAA,IACC,OAAO,MAAO,KAAI,aAAa;AAAA,IAC/B,QAAQ,KAAM,KAAI,aAAa;AAAA,IAC/B,SAAQ;AAAA,KAER,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,GAAE;AAAA,IACF,UAAS;AAAA,IACT,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,MAAM,SAAS,WAAW;AAAA,IAC1B,GAAE;AAAA,IACF,UAAS;AAAA,IACT,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,CACF;AAGJ;AAEO,MAAM,WAAW,CAAC,EAAE,YAAY,GAAG,QAAQ,qBAA0B;AAC1E,SACE,oCAAC;AAAA,IACC,KAAI;AAAA,IACJ,gBAAgB;AAAA,IAChB,YAAY;AAAA,MACV,SAAS;AAAA,IACX;AAAA,KAEA,oCAAC;AAAA,IACC,OAAO,MAAM,IAAI;AAAA,IACjB,QAAQ,MAAM,IAAI;AAAA,IAClB,SAAQ;AAAA,IACR,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,YAAW;AAAA,KAEX,oCAAC;AAAA,
|
|
4
|
+
"sourcesContent": ["import React, { forwardRef } from 'react'\nimport { ThemeName, XStack, XStackProps, YStack } from 'tamagui'\n\nexport const tints: ThemeName[] = ['red', 'orange', 'yellow', 'green', 'blue', 'purple', 'pink']\n\nexport const logoColors = tints.map((t) => `var(--${t}9)`)\n\nexport const TamaguiLogo = forwardRef(\n (\n {\n showWords,\n color,\n downscale,\n onHoverLetter,\n ...props\n }: {\n onHoverLetter?: (i: number) => void\n showWords?: boolean\n color?: string\n downscale?: number\n } & XStackProps,\n ref\n ) => (\n <XStack ref={ref} ai=\"center\" jc=\"center\" space=\"$5\" {...props}>\n <LogoIcon downscale={(downscale ?? 1) * (showWords ? 2 : 1.5)} color={color} />\n {showWords && (\n <YStack mb={-4}>\n <LogoWords onHoverLetter={onHoverLetter} downscale={downscale ?? 2} color={color} />\n </YStack>\n )}\n </XStack>\n )\n)\n\nexport const LogoWords = ({\n color,\n downscale = 1,\n onHoverLetter,\n}: {\n color?: string\n downscale?: number\n onHoverLetter?: any\n}) => {\n return (\n <svg\n width={373 * (1 / downscale) * 0.333333334}\n height={41 * (1 / downscale) * 0.333333334}\n viewBox=\"0 0 373 41\"\n >\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[0]}\n points=\"24.3870968 40.1612903 24.3870968 8.67741935 32.2580645 8.67741935 32.2580645 0.806451613 0.774193548 0.806451613 0.774193548 8.67741935 8.64516129 8.67741935 8.64516129 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(0) : undefined}\n />\n <path\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[1]}\n d=\"M87.3548387,0.806451613 L87.3548387,8.67741935 L95.2258065,8.67741935 L95.2258065,40.1612903 L79.483871,40.1612903 L79.483871,24.4193548 L71.6129032,24.4193548 L71.6129032,40.1612903 L55.8709677,40.1612903 L55.8709677,8.67741935 L63.7419355,8.67741935 L63.7419355,0.806451613 L87.3548387,0.806451613 Z M79.483871,8.67741935 L71.6129032,8.67741935 L71.6129032,16.5483871 L79.483871,16.5483871 L79.483871,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(1) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[2]}\n points=\"130.645161 40.1612903 130.645161 22.4516129 138.516129 22.4516129 138.516129 40.1612903 154.258065 40.1612903 154.258065 0.806451613 142.451613 0.806451613 142.451613 8.67741935 126.709677 8.67741935 126.709677 0.806451613 114.903226 0.806451613 114.903226 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(2) : undefined}\n />\n <path\n fill={color || logoColors[3]}\n d=\"M205.419355,0.806451613 L205.419355,8.67741935 L213.290323,8.67741935 L213.290323,40.1612903 L197.548387,40.1612903 L197.548387,24.4193548 L189.677419,24.4193548 L189.677419,40.1612903 L173.935484,40.1612903 L173.935484,8.67741935 L181.806452,8.67741935 L181.806452,0.806451613 L205.419355,0.806451613 Z M197.548387,8.67741935 L189.677419,8.67741935 L189.677419,16.5483871 L197.548387,16.5483871 L197.548387,8.67741935 Z\"\n fillRule=\"nonzero\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(3) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[4]}\n points=\"264.451613 40.1612903 264.451613 32.2903226 272.322581 32.2903226 272.322581 16.5483871 256.580645 16.5483871 256.580645 32.2903226 248.709677 32.2903226 248.709677 8.67741935 272.322581 8.67741935 272.322581 0.806451613 240.83871 0.806451613 240.83871 8.67741935 232.967742 8.67741935 232.967742 32.2903226 240.83871 32.2903226 240.83871 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(4) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[5]}\n points=\"323.483871 40.1612903 323.483871 32.2903226 331.354839 32.2903226 331.354839 0.806451613 315.612903 0.806451613 315.612903 32.2903226 307.741935 32.2903226 307.741935 0.806451613 292 0.806451613 292 32.2903226 299.870968 32.2903226 299.870968 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(5) : undefined}\n />\n <polygon\n shapeRendering=\"crispEdges\"\n fill={color || logoColors[6]}\n points=\"372.677419 40.1612903 372.677419 0.806451613 356.935484 0.806451613 356.935484 40.1612903\"\n onMouseEnter={onHoverLetter ? () => onHoverLetter(6) : undefined}\n />\n </svg>\n )\n // return <Image width={206 / 2} height={31 / 2} src={logo.src} />\n}\n\nexport const LogoIcon = ({ downscale = 2, color = 'var(--color)' }: any) => {\n return (\n <YStack\n als=\"center\"\n marginVertical={-10}\n pressStyle={{\n opacity: 0.7,\n }}\n >\n <svg\n width={450 / 8 / downscale}\n height={420 / 8 / downscale}\n viewBox=\"0 0 450 420\"\n version=\"1.1\"\n xmlns=\"http://www.w3.org/2000/svg\"\n xmlnsXlink=\"http://www.w3.org/1999/xlink\"\n >\n <g\n transform=\"translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) \"\n fill={color}\n >\n <rect fill={color} x=\"150\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"0\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"420\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"390\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"360\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"330\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"210\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"180\" y=\"390\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"360\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"330\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"300\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"180\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"150\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"0\" y=\"120\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"30\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"60\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"120\" y=\"30\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"150\" y=\"60\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"90\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"240\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"270\" y=\"270\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"240\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"300\" y=\"210\" width=\"20\" height=\"20\"></rect>\n <rect fill={color} x=\"90\" y=\"60\" width=\"20\" height=\"20\"></rect>\n </g>\n </svg>\n </YStack>\n )\n}\n"],
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AACA;AAEO,MAAM,QAAqB,CAAC,OAAO,UAAU,UAAU,SAAS,QAAQ,UAAU,MAAM;AAExF,MAAM,aAAa,MAAM,IAAI,CAAC,MAAM,SAAS,KAAK;AAElD,MAAM,cAAc,WACzB,CACE,IAYA,QACA;AAbA,eACE;AAAA;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,MAJF,IAKK,kBALL,IAKK;AAAA,IAJH;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA;AAUF,6CAAC;AAAA,IAAO;AAAA,IAAU,IAAG;AAAA,IAAS,IAAG;AAAA,IAAS,OAAM;AAAA,KAAS,QACvD,oCAAC;AAAA,IAAS,WAAY,cAAa,KAAM,aAAY,IAAI;AAAA,IAAM;AAAA,GAAc,GAC5E,aACC,oCAAC;AAAA,IAAO,IAAI;AAAA,KACV,oCAAC;AAAA,IAAU;AAAA,IAA8B,WAAW,aAAa;AAAA,IAAG;AAAA,GAAc,CACpF,CAEJ;AAAA,CAEJ;AAEO,MAAM,YAAY,CAAC;AAAA,EACxB;AAAA,EACA,YAAY;AAAA,EACZ;AAAA,MAKI;AACJ,SACE,oCAAC;AAAA,IACC,OAAO,MAAO,KAAI,aAAa;AAAA,IAC/B,QAAQ,KAAM,KAAI,aAAa;AAAA,IAC/B,SAAQ;AAAA,KAER,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,GAAE;AAAA,IACF,UAAS;AAAA,IACT,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,MAAM,SAAS,WAAW;AAAA,IAC1B,GAAE;AAAA,IACF,UAAS;AAAA,IACT,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,GACA,oCAAC;AAAA,IACC,gBAAe;AAAA,IACf,MAAM,SAAS,WAAW;AAAA,IAC1B,QAAO;AAAA,IACP,cAAc,gBAAgB,MAAM,cAAc,CAAC,IAAI;AAAA,GACzD,CACF;AAGJ;AAEO,MAAM,WAAW,CAAC,EAAE,YAAY,GAAG,QAAQ,qBAA0B;AAC1E,SACE,oCAAC;AAAA,IACC,KAAI;AAAA,IACJ,gBAAgB;AAAA,IAChB,YAAY;AAAA,MACV,SAAS;AAAA,IACX;AAAA,KAEA,oCAAC;AAAA,IACC,OAAO,MAAM,IAAI;AAAA,IACjB,QAAQ,MAAM,IAAI;AAAA,IAClB,SAAQ;AAAA,IACR,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,YAAW;AAAA,KAEX,oCAAC;AAAA,IACC,WAAU;AAAA,IACV,MAAM;AAAA,KAEN,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAI,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAI,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAI,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAI,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAI,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAI,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAI,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAI,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACvD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAI,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACxD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GACzD,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAM,GAAE;AAAA,IAAM,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,GAC1D,oCAAC;AAAA,IAAK,MAAM;AAAA,IAAO,GAAE;AAAA,IAAK,GAAE;AAAA,IAAK,OAAM;AAAA,IAAK,QAAO;AAAA,GAAK,CAC1D,CACF,CACF;AAEJ;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
package/dist/jsx/TamaguiLogo.js
CHANGED
|
@@ -30,61 +30,58 @@ const LogoWords = ({
|
|
|
30
30
|
const LogoIcon = ({ downscale = 2, color = "var(--color)" }) => {
|
|
31
31
|
return <YStack als="center" marginVertical={-10} pressStyle={{
|
|
32
32
|
opacity: 0.7
|
|
33
|
-
}}><svg width={450 / 8 / downscale} height={420 / 8 / downscale} viewBox="0 0 450 420" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink"><g transform="translate(
|
|
34
|
-
<
|
|
35
|
-
<
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
<rect fill={color} x="90" y="60" width="20" height="20" />
|
|
86
|
-
</g></g>
|
|
87
|
-
</g></g></svg></YStack>;
|
|
33
|
+
}}><svg width={450 / 8 / downscale} height={420 / 8 / downscale} viewBox="0 0 450 420" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlnsXlink="http://www.w3.org/1999/xlink"><g transform="translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) " fill={color}>
|
|
34
|
+
<rect fill={color} x="150" y="0" width="20" height="20" />
|
|
35
|
+
<rect fill={color} x="180" y="0" width="20" height="20" />
|
|
36
|
+
<rect fill={color} x="210" y="0" width="20" height="20" />
|
|
37
|
+
<rect fill={color} x="240" y="0" width="20" height="20" />
|
|
38
|
+
<rect fill={color} x="270" y="0" width="20" height="20" />
|
|
39
|
+
<rect fill={color} x="300" y="0" width="20" height="20" />
|
|
40
|
+
<rect fill={color} x="330" y="30" width="20" height="20" />
|
|
41
|
+
<rect fill={color} x="360" y="60" width="20" height="20" />
|
|
42
|
+
<rect fill={color} x="390" y="90" width="20" height="20" />
|
|
43
|
+
<rect fill={color} x="390" y="120" width="20" height="20" />
|
|
44
|
+
<rect fill={color} x="390" y="150" width="20" height="20" />
|
|
45
|
+
<rect fill={color} x="390" y="180" width="20" height="20" />
|
|
46
|
+
<rect fill={color} x="420" y="210" width="20" height="20" />
|
|
47
|
+
<rect fill={color} x="420" y="240" width="20" height="20" />
|
|
48
|
+
<rect fill={color} x="420" y="270" width="20" height="20" />
|
|
49
|
+
<rect fill={color} x="390" y="300" width="20" height="20" />
|
|
50
|
+
<rect fill={color} x="360" y="330" width="20" height="20" />
|
|
51
|
+
<rect fill={color} x="330" y="360" width="20" height="20" />
|
|
52
|
+
<rect fill={color} x="300" y="390" width="20" height="20" />
|
|
53
|
+
<rect fill={color} x="270" y="390" width="20" height="20" />
|
|
54
|
+
<rect fill={color} x="240" y="360" width="20" height="20" />
|
|
55
|
+
<rect fill={color} x="210" y="360" width="20" height="20" />
|
|
56
|
+
<rect fill={color} x="210" y="390" width="20" height="20" />
|
|
57
|
+
<rect fill={color} x="180" y="390" width="20" height="20" />
|
|
58
|
+
<rect fill={color} x="150" y="360" width="20" height="20" />
|
|
59
|
+
<rect fill={color} x="150" y="330" width="20" height="20" />
|
|
60
|
+
<rect fill={color} x="120" y="300" width="20" height="20" />
|
|
61
|
+
<rect fill={color} x="90" y="240" width="20" height="20" />
|
|
62
|
+
<rect fill={color} x="90" y="270" width="20" height="20" />
|
|
63
|
+
<rect fill={color} x="90" y="210" width="20" height="20" />
|
|
64
|
+
<rect fill={color} x="60" y="180" width="20" height="20" />
|
|
65
|
+
<rect fill={color} x="30" y="180" width="20" height="20" />
|
|
66
|
+
<rect fill={color} x="0" y="150" width="20" height="20" />
|
|
67
|
+
<rect fill={color} x="30" y="120" width="20" height="20" />
|
|
68
|
+
<rect fill={color} x="60" y="120" width="20" height="20" />
|
|
69
|
+
<rect fill={color} x="90" y="120" width="20" height="20" />
|
|
70
|
+
<rect fill={color} x="0" y="90" width="20" height="20" />
|
|
71
|
+
<rect fill={color} x="0" y="120" width="20" height="20" />
|
|
72
|
+
<rect fill={color} x="30" y="60" width="20" height="20" />
|
|
73
|
+
<rect fill={color} x="30" y="60" width="20" height="20" />
|
|
74
|
+
<rect fill={color} x="60" y="60" width="20" height="20" />
|
|
75
|
+
<rect fill={color} x="120" y="30" width="20" height="20" />
|
|
76
|
+
<rect fill={color} x="150" y="60" width="20" height="20" />
|
|
77
|
+
<rect fill={color} x="240" y="90" width="20" height="20" />
|
|
78
|
+
<rect fill={color} x="240" y="210" width="20" height="20" />
|
|
79
|
+
<rect fill={color} x="240" y="240" width="20" height="20" />
|
|
80
|
+
<rect fill={color} x="270" y="270" width="20" height="20" />
|
|
81
|
+
<rect fill={color} x="300" y="240" width="20" height="20" />
|
|
82
|
+
<rect fill={color} x="300" y="210" width="20" height="20" />
|
|
83
|
+
<rect fill={color} x="90" y="60" width="20" height="20" />
|
|
84
|
+
</g></svg></YStack>;
|
|
88
85
|
};
|
|
89
86
|
export {
|
|
90
87
|
LogoIcon,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/demos",
|
|
3
|
-
"version": "1.0.1-beta.
|
|
3
|
+
"version": "1.0.1-beta.77",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"types": "./types/index.d.ts",
|
|
@@ -17,16 +17,16 @@
|
|
|
17
17
|
"watch": "tamagui-build --watch"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@tamagui/config-base": "^1.0.1-beta.
|
|
21
|
-
"@tamagui/core": "^1.0.1-beta.
|
|
22
|
-
"tamagui": "^1.0.1-beta.
|
|
20
|
+
"@tamagui/config-base": "^1.0.1-beta.77",
|
|
21
|
+
"@tamagui/core": "^1.0.1-beta.77",
|
|
22
|
+
"tamagui": "^1.0.1-beta.77"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"react": "*",
|
|
26
26
|
"react-dom": "*"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@tamagui/build": "^1.0.1-beta.
|
|
29
|
+
"@tamagui/build": "^1.0.1-beta.77",
|
|
30
30
|
"react": "*",
|
|
31
31
|
"react-dom": "*"
|
|
32
32
|
},
|
package/src/TamaguiLogo.tsx
CHANGED
|
@@ -112,69 +112,60 @@ export const LogoIcon = ({ downscale = 2, color = 'var(--color)' }: any) => {
|
|
|
112
112
|
xmlns="http://www.w3.org/2000/svg"
|
|
113
113
|
xmlnsXlink="http://www.w3.org/1999/xlink"
|
|
114
114
|
>
|
|
115
|
-
<g
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
<rect fill={color} x="240" y="210" width="20" height="20"></rect>
|
|
170
|
-
<rect fill={color} x="240" y="240" width="20" height="20"></rect>
|
|
171
|
-
<rect fill={color} x="270" y="270" width="20" height="20"></rect>
|
|
172
|
-
<rect fill={color} x="300" y="240" width="20" height="20"></rect>
|
|
173
|
-
<rect fill={color} x="300" y="210" width="20" height="20"></rect>
|
|
174
|
-
<rect fill={color} x="90" y="60" width="20" height="20"></rect>
|
|
175
|
-
</g>
|
|
176
|
-
</g>
|
|
177
|
-
</g>
|
|
115
|
+
<g
|
|
116
|
+
transform="translate(225.000000, 210.000000) scale(-1, 1) translate(-225.000000, -210.000000) "
|
|
117
|
+
fill={color}
|
|
118
|
+
>
|
|
119
|
+
<rect fill={color} x="150" y="0" width="20" height="20"></rect>
|
|
120
|
+
<rect fill={color} x="180" y="0" width="20" height="20"></rect>
|
|
121
|
+
<rect fill={color} x="210" y="0" width="20" height="20"></rect>
|
|
122
|
+
<rect fill={color} x="240" y="0" width="20" height="20"></rect>
|
|
123
|
+
<rect fill={color} x="270" y="0" width="20" height="20"></rect>
|
|
124
|
+
<rect fill={color} x="300" y="0" width="20" height="20"></rect>
|
|
125
|
+
<rect fill={color} x="330" y="30" width="20" height="20"></rect>
|
|
126
|
+
<rect fill={color} x="360" y="60" width="20" height="20"></rect>
|
|
127
|
+
<rect fill={color} x="390" y="90" width="20" height="20"></rect>
|
|
128
|
+
<rect fill={color} x="390" y="120" width="20" height="20"></rect>
|
|
129
|
+
<rect fill={color} x="390" y="150" width="20" height="20"></rect>
|
|
130
|
+
<rect fill={color} x="390" y="180" width="20" height="20"></rect>
|
|
131
|
+
<rect fill={color} x="420" y="210" width="20" height="20"></rect>
|
|
132
|
+
<rect fill={color} x="420" y="240" width="20" height="20"></rect>
|
|
133
|
+
<rect fill={color} x="420" y="270" width="20" height="20"></rect>
|
|
134
|
+
<rect fill={color} x="390" y="300" width="20" height="20"></rect>
|
|
135
|
+
<rect fill={color} x="360" y="330" width="20" height="20"></rect>
|
|
136
|
+
<rect fill={color} x="330" y="360" width="20" height="20"></rect>
|
|
137
|
+
<rect fill={color} x="300" y="390" width="20" height="20"></rect>
|
|
138
|
+
<rect fill={color} x="270" y="390" width="20" height="20"></rect>
|
|
139
|
+
<rect fill={color} x="240" y="360" width="20" height="20"></rect>
|
|
140
|
+
<rect fill={color} x="210" y="360" width="20" height="20"></rect>
|
|
141
|
+
<rect fill={color} x="210" y="390" width="20" height="20"></rect>
|
|
142
|
+
<rect fill={color} x="180" y="390" width="20" height="20"></rect>
|
|
143
|
+
<rect fill={color} x="150" y="360" width="20" height="20"></rect>
|
|
144
|
+
<rect fill={color} x="150" y="330" width="20" height="20"></rect>
|
|
145
|
+
<rect fill={color} x="120" y="300" width="20" height="20"></rect>
|
|
146
|
+
<rect fill={color} x="90" y="240" width="20" height="20"></rect>
|
|
147
|
+
<rect fill={color} x="90" y="270" width="20" height="20"></rect>
|
|
148
|
+
<rect fill={color} x="90" y="210" width="20" height="20"></rect>
|
|
149
|
+
<rect fill={color} x="60" y="180" width="20" height="20"></rect>
|
|
150
|
+
<rect fill={color} x="30" y="180" width="20" height="20"></rect>
|
|
151
|
+
<rect fill={color} x="0" y="150" width="20" height="20"></rect>
|
|
152
|
+
<rect fill={color} x="30" y="120" width="20" height="20"></rect>
|
|
153
|
+
<rect fill={color} x="60" y="120" width="20" height="20"></rect>
|
|
154
|
+
<rect fill={color} x="90" y="120" width="20" height="20"></rect>
|
|
155
|
+
<rect fill={color} x="0" y="90" width="20" height="20"></rect>
|
|
156
|
+
<rect fill={color} x="0" y="120" width="20" height="20"></rect>
|
|
157
|
+
<rect fill={color} x="30" y="60" width="20" height="20"></rect>
|
|
158
|
+
<rect fill={color} x="30" y="60" width="20" height="20"></rect>
|
|
159
|
+
<rect fill={color} x="60" y="60" width="20" height="20"></rect>
|
|
160
|
+
<rect fill={color} x="120" y="30" width="20" height="20"></rect>
|
|
161
|
+
<rect fill={color} x="150" y="60" width="20" height="20"></rect>
|
|
162
|
+
<rect fill={color} x="240" y="90" width="20" height="20"></rect>
|
|
163
|
+
<rect fill={color} x="240" y="210" width="20" height="20"></rect>
|
|
164
|
+
<rect fill={color} x="240" y="240" width="20" height="20"></rect>
|
|
165
|
+
<rect fill={color} x="270" y="270" width="20" height="20"></rect>
|
|
166
|
+
<rect fill={color} x="300" y="240" width="20" height="20"></rect>
|
|
167
|
+
<rect fill={color} x="300" y="210" width="20" height="20"></rect>
|
|
168
|
+
<rect fill={color} x="90" y="60" width="20" height="20"></rect>
|
|
178
169
|
</g>
|
|
179
170
|
</svg>
|
|
180
171
|
</YStack>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TamaguiLogo.d.ts","sourceRoot":"","sources":["../src/TamaguiLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAA;AACzC,OAAO,EAAE,SAAS,EAA+B,MAAM,SAAS,CAAA;AAEhE,eAAO,MAAM,KAAK,EAAE,SAAS,EAAmE,CAAA;AAEhG,eAAO,MAAM,UAAU,UAAmC,CAAA;AAE1D,eAAO,MAAM,WAAW;yBASE,MAAM,KAAK,IAAI;;;;;;;;;;;;;mCAgBxC,CAAA;AAED,eAAO,MAAM,SAAS;;;oBAOJ,GAAG;iBAsDpB,CAAA;AAED,eAAO,MAAM,QAAQ,yBAA+C,GAAG,
|
|
1
|
+
{"version":3,"file":"TamaguiLogo.d.ts","sourceRoot":"","sources":["../src/TamaguiLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAqB,MAAM,OAAO,CAAA;AACzC,OAAO,EAAE,SAAS,EAA+B,MAAM,SAAS,CAAA;AAEhE,eAAO,MAAM,KAAK,EAAE,SAAS,EAAmE,CAAA;AAEhG,eAAO,MAAM,UAAU,UAAmC,CAAA;AAE1D,eAAO,MAAM,WAAW;yBASE,MAAM,KAAK,IAAI;;;;;;;;;;;;;mCAgBxC,CAAA;AAED,eAAO,MAAM,SAAS;;;oBAOJ,GAAG;iBAsDpB,CAAA;AAED,eAAO,MAAM,QAAQ,yBAA+C,GAAG,gBA2EtE,CAAA"}
|