@intlayer/design-system 5.4.0 → 5.4.2
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/.vite/manifest.json +68 -2
- package/dist/components/Footer/index.cjs +5 -3
- package/dist/components/Footer/index.cjs.map +1 -1
- package/dist/components/Footer/index.d.ts.map +1 -1
- package/dist/components/Footer/index.mjs +5 -3
- package/dist/components/Footer/index.mjs.map +1 -1
- package/dist/components/SocialNetworks/FacebookLogo.cjs +17 -0
- package/dist/components/SocialNetworks/FacebookLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/FacebookLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/FacebookLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/FacebookLogo.mjs +17 -0
- package/dist/components/SocialNetworks/FacebookLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/InstagramLogo.cjs +16 -0
- package/dist/components/SocialNetworks/InstagramLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/InstagramLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/InstagramLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/InstagramLogo.mjs +16 -0
- package/dist/components/SocialNetworks/InstagramLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/LinkedInLogo.cjs +22 -0
- package/dist/components/SocialNetworks/LinkedInLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/LinkedInLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/LinkedInLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/LinkedInLogo.mjs +22 -0
- package/dist/components/SocialNetworks/LinkedInLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/ProductHuntLogo.cjs +17 -0
- package/dist/components/SocialNetworks/ProductHuntLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/ProductHuntLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/ProductHuntLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/ProductHuntLogo.mjs +17 -0
- package/dist/components/SocialNetworks/ProductHuntLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/TiktokLogo.cjs +17 -0
- package/dist/components/SocialNetworks/TiktokLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/TiktokLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/TiktokLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/TiktokLogo.mjs +17 -0
- package/dist/components/SocialNetworks/TiktokLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/XLogo.cjs +17 -0
- package/dist/components/SocialNetworks/XLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/XLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/XLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/XLogo.mjs +17 -0
- package/dist/components/SocialNetworks/XLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/YoutubeLogo.cjs +17 -0
- package/dist/components/SocialNetworks/YoutubeLogo.cjs.map +1 -0
- package/dist/components/SocialNetworks/YoutubeLogo.d.ts +3 -0
- package/dist/components/SocialNetworks/YoutubeLogo.d.ts.map +1 -0
- package/dist/components/SocialNetworks/YoutubeLogo.mjs +17 -0
- package/dist/components/SocialNetworks/YoutubeLogo.mjs.map +1 -0
- package/dist/components/SocialNetworks/index.cjs +79 -0
- package/dist/components/SocialNetworks/index.cjs.map +1 -0
- package/dist/components/SocialNetworks/index.d.ts +18 -0
- package/dist/components/SocialNetworks/index.d.ts.map +1 -0
- package/dist/components/SocialNetworks/index.mjs +79 -0
- package/dist/components/SocialNetworks/index.mjs.map +1 -0
- package/dist/components/index.cjs +16 -0
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/index.mjs +16 -0
- package/dist/components/index.mjs.map +1 -1
- package/dist/tailwind.css +1 -1
- package/package.json +17 -17
package/dist/.vite/manifest.json
CHANGED
|
@@ -1295,7 +1295,8 @@
|
|
|
1295
1295
|
"src": "src/components/Footer/index.tsx",
|
|
1296
1296
|
"isEntry": true,
|
|
1297
1297
|
"imports": [
|
|
1298
|
-
"src/components/Logo/index.tsx"
|
|
1298
|
+
"src/components/Logo/index.tsx",
|
|
1299
|
+
"src/components/SocialNetworks/index.tsx"
|
|
1299
1300
|
]
|
|
1300
1301
|
},
|
|
1301
1302
|
"src/components/Form/Form.tsx": {
|
|
@@ -2267,6 +2268,63 @@
|
|
|
2267
2268
|
"src/components/Select/Select.tsx"
|
|
2268
2269
|
]
|
|
2269
2270
|
},
|
|
2271
|
+
"src/components/SocialNetworks/FacebookLogo.tsx": {
|
|
2272
|
+
"file": "components/SocialNetworks/FacebookLogo.cjs",
|
|
2273
|
+
"name": "components/SocialNetworks/FacebookLogo",
|
|
2274
|
+
"src": "src/components/SocialNetworks/FacebookLogo.tsx",
|
|
2275
|
+
"isEntry": true
|
|
2276
|
+
},
|
|
2277
|
+
"src/components/SocialNetworks/InstagramLogo.tsx": {
|
|
2278
|
+
"file": "components/SocialNetworks/InstagramLogo.cjs",
|
|
2279
|
+
"name": "components/SocialNetworks/InstagramLogo",
|
|
2280
|
+
"src": "src/components/SocialNetworks/InstagramLogo.tsx",
|
|
2281
|
+
"isEntry": true
|
|
2282
|
+
},
|
|
2283
|
+
"src/components/SocialNetworks/LinkedInLogo.tsx": {
|
|
2284
|
+
"file": "components/SocialNetworks/LinkedInLogo.cjs",
|
|
2285
|
+
"name": "components/SocialNetworks/LinkedInLogo",
|
|
2286
|
+
"src": "src/components/SocialNetworks/LinkedInLogo.tsx",
|
|
2287
|
+
"isEntry": true
|
|
2288
|
+
},
|
|
2289
|
+
"src/components/SocialNetworks/ProductHuntLogo.tsx": {
|
|
2290
|
+
"file": "components/SocialNetworks/ProductHuntLogo.cjs",
|
|
2291
|
+
"name": "components/SocialNetworks/ProductHuntLogo",
|
|
2292
|
+
"src": "src/components/SocialNetworks/ProductHuntLogo.tsx",
|
|
2293
|
+
"isEntry": true
|
|
2294
|
+
},
|
|
2295
|
+
"src/components/SocialNetworks/TiktokLogo.tsx": {
|
|
2296
|
+
"file": "components/SocialNetworks/TiktokLogo.cjs",
|
|
2297
|
+
"name": "components/SocialNetworks/TiktokLogo",
|
|
2298
|
+
"src": "src/components/SocialNetworks/TiktokLogo.tsx",
|
|
2299
|
+
"isEntry": true
|
|
2300
|
+
},
|
|
2301
|
+
"src/components/SocialNetworks/XLogo.tsx": {
|
|
2302
|
+
"file": "components/SocialNetworks/XLogo.cjs",
|
|
2303
|
+
"name": "components/SocialNetworks/XLogo",
|
|
2304
|
+
"src": "src/components/SocialNetworks/XLogo.tsx",
|
|
2305
|
+
"isEntry": true
|
|
2306
|
+
},
|
|
2307
|
+
"src/components/SocialNetworks/YoutubeLogo.tsx": {
|
|
2308
|
+
"file": "components/SocialNetworks/YoutubeLogo.cjs",
|
|
2309
|
+
"name": "components/SocialNetworks/YoutubeLogo",
|
|
2310
|
+
"src": "src/components/SocialNetworks/YoutubeLogo.tsx",
|
|
2311
|
+
"isEntry": true
|
|
2312
|
+
},
|
|
2313
|
+
"src/components/SocialNetworks/index.tsx": {
|
|
2314
|
+
"file": "components/SocialNetworks/index.cjs",
|
|
2315
|
+
"name": "components/SocialNetworks/index",
|
|
2316
|
+
"src": "src/components/SocialNetworks/index.tsx",
|
|
2317
|
+
"isEntry": true,
|
|
2318
|
+
"imports": [
|
|
2319
|
+
"src/components/SocialNetworks/FacebookLogo.tsx",
|
|
2320
|
+
"src/components/SocialNetworks/InstagramLogo.tsx",
|
|
2321
|
+
"src/components/SocialNetworks/LinkedInLogo.tsx",
|
|
2322
|
+
"src/components/SocialNetworks/ProductHuntLogo.tsx",
|
|
2323
|
+
"src/components/SocialNetworks/TiktokLogo.tsx",
|
|
2324
|
+
"src/components/SocialNetworks/XLogo.tsx",
|
|
2325
|
+
"src/components/SocialNetworks/YoutubeLogo.tsx"
|
|
2326
|
+
]
|
|
2327
|
+
},
|
|
2270
2328
|
"src/components/SwitchSelector/index.tsx": {
|
|
2271
2329
|
"file": "components/SwitchSelector/index.cjs",
|
|
2272
2330
|
"name": "components/SwitchSelector/index",
|
|
@@ -2514,6 +2572,7 @@
|
|
|
2514
2572
|
"src/components/RightDrawer/useRightDrawerStore.ts",
|
|
2515
2573
|
"src/components/Select/Multiselect.tsx",
|
|
2516
2574
|
"src/components/Select/Select.tsx",
|
|
2575
|
+
"src/components/SocialNetworks/index.tsx",
|
|
2517
2576
|
"src/components/SwitchSelector/index.tsx",
|
|
2518
2577
|
"src/components/TabSelector/TabSelector.tsx",
|
|
2519
2578
|
"src/components/Tag/index.tsx",
|
|
@@ -2526,7 +2585,14 @@
|
|
|
2526
2585
|
"src/components/Toaster/Toast.tsx",
|
|
2527
2586
|
"src/components/Toaster/useToast.tsx",
|
|
2528
2587
|
"src/components/Toaster/Toaster.tsx",
|
|
2529
|
-
"src/components/WithResizer/index.tsx"
|
|
2588
|
+
"src/components/WithResizer/index.tsx",
|
|
2589
|
+
"src/components/SocialNetworks/FacebookLogo.tsx",
|
|
2590
|
+
"src/components/SocialNetworks/InstagramLogo.tsx",
|
|
2591
|
+
"src/components/SocialNetworks/LinkedInLogo.tsx",
|
|
2592
|
+
"src/components/SocialNetworks/ProductHuntLogo.tsx",
|
|
2593
|
+
"src/components/SocialNetworks/TiktokLogo.tsx",
|
|
2594
|
+
"src/components/SocialNetworks/XLogo.tsx",
|
|
2595
|
+
"src/components/SocialNetworks/YoutubeLogo.tsx"
|
|
2530
2596
|
]
|
|
2531
2597
|
},
|
|
2532
2598
|
"src/hooks/index.ts": {
|
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const jsxRuntime = require("react/jsx-runtime");
|
|
4
4
|
const components_Logo_index = require("../Logo/index.cjs");
|
|
5
|
+
const components_SocialNetworks_index = require("../SocialNetworks/index.cjs");
|
|
5
6
|
const Footer = ({ links }) => /* @__PURE__ */ jsxRuntime.jsxs("footer", { className: "flex flex-auto flex-row flex-wrap items-center justify-around gap-10 p-6", children: [
|
|
6
|
-
/* @__PURE__ */ jsxRuntime.jsxs("aside", { className: "flex flex-col items-center justify-between md:w-1/4", children: [
|
|
7
|
-
/* @__PURE__ */ jsxRuntime.jsx(components_Logo_index.Logo, { type: "logoWithTextBelow",
|
|
8
|
-
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-neutral text-center text-xs", children: "© 2024 Intlayer, Inc." })
|
|
7
|
+
/* @__PURE__ */ jsxRuntime.jsxs("aside", { className: "flex flex-col items-center justify-between md:w-1/4 gap-3", children: [
|
|
8
|
+
/* @__PURE__ */ jsxRuntime.jsx(components_Logo_index.Logo, { type: "logoWithTextBelow", className: "size-full max-w-[120px]" }),
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-neutral text-center text-xs", children: "© 2024 Intlayer, Inc." }),
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-row gap-3", children: /* @__PURE__ */ jsxRuntime.jsx(components_SocialNetworks_index.SocialNetworks, {}) })
|
|
9
11
|
] }),
|
|
10
12
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "m-auto flex w-full flex-row flex-wrap justify-around gap-x-3 gap-y-6 md:w-2/3", children: (links ?? []).map(({ title, links: links2 }) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
11
13
|
"div",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../../../src/components/Footer/index.tsx"],"sourcesContent":["import type { FC, ReactNode } from 'react';\nimport { Logo } from '../Logo';\
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../../../src/components/Footer/index.tsx"],"sourcesContent":["import type { FC, ReactNode } from 'react';\nimport { Logo } from '../Logo';\nimport { SocialNetworks } from '../SocialNetworks';\nexport type FooterLink = {\n href: string;\n text: ReactNode;\n onClick?: () => void;\n label: string;\n};\n\nexport type LinkGroup = { title: ReactNode; links: FooterLink[] };\n\ntype FooterProps = { links?: LinkGroup[] };\n\nexport const Footer: FC<FooterProps> = ({ links }) => (\n <footer className=\"flex flex-auto flex-row flex-wrap items-center justify-around gap-10 p-6\">\n <aside className=\"flex flex-col items-center justify-between md:w-1/4 gap-3\">\n <Logo type=\"logoWithTextBelow\" className=\"size-full max-w-[120px]\" />\n <span className=\"text-neutral text-center text-xs\">\n © 2024 Intlayer, Inc.\n </span>\n <div className=\"flex flex-row gap-3\">\n <SocialNetworks />\n </div>\n </aside>\n <div className=\"m-auto flex w-full flex-row flex-wrap justify-around gap-x-3 gap-y-6 md:w-2/3\">\n {(links ?? []).map(({ title, links }) => (\n <div\n className=\"flex flex-col gap-2\"\n key={links.map((link) => link.href).join(',')}\n >\n <strong>{title}</strong>\n <div className=\"flex flex-col gap-3 text-sm\">\n {links.map((link) => (\n <a key={link.href} href={link.href} aria-label={link.label}>\n {link.text}\n </a>\n ))}\n </div>\n </div>\n ))}\n </div>\n </footer>\n);\n"],"names":["jsxs","jsx","Logo","SocialNetworks","links"],"mappings":";;;;;AAca,MAAA,SAA0B,CAAC,EAAE,YACvCA,2BAAAA,KAAA,UAAA,EAAO,WAAU,4EAChB,UAAA;AAAA,EAACA,2BAAAA,KAAA,SAAA,EAAM,WAAU,6DACf,UAAA;AAAA,IAAAC,2BAAA,IAACC,sBAAK,MAAA,EAAA,MAAK,qBAAoB,WAAU,2BAA0B;AAAA,IAClED,2BAAA,IAAA,QAAA,EAAK,WAAU,oCAAmC,UAEnD,yBAAA;AAAA,mCACC,OAAI,EAAA,WAAU,uBACb,UAAAA,2BAAA,IAACE,kDAAe,EAClB,CAAA;AAAA,EAAA,GACF;AAAA,EACCF,2BAAAA,IAAA,OAAA,EAAI,WAAU,iFACX,WAAS,SAAA,CAAA,GAAI,IAAI,CAAC,EAAE,OAAO,OAAAG,OAC3B,MAAAJ,2BAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAU;AAAA,MAGV,UAAA;AAAA,QAAAC,2BAAAA,IAAC,YAAQ,UAAM,MAAA,CAAA;AAAA,QACfA,2BAAAA,IAAC,SAAI,WAAU,+BACZ,UAAAG,OAAM,IAAI,CAAC,SACTH,2BAAAA,IAAA,KAAA,EAAkB,MAAM,KAAK,MAAM,cAAY,KAAK,OAClD,eAAK,KADA,GAAA,KAAK,IAEb,CACD,EACH,CAAA;AAAA,MAAA;AAAA,IAAA;AAAA,IATKG,OAAM,IAAI,CAAC,SAAS,KAAK,IAAI,EAAE,KAAK,GAAG;AAAA,EAAA,CAW/C,EACH,CAAA;AAAA,EACF,CAAA;;"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Footer/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAG3C,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IAAE,KAAK,EAAE,SAAS,CAAC;IAAC,KAAK,EAAE,UAAU,EAAE,CAAA;CAAE,CAAC;AAElE,KAAK,WAAW,GAAG;IAAE,KAAK,CAAC,EAAE,SAAS,EAAE,CAAA;CAAE,CAAC;AAE3C,eAAO,MAAM,MAAM,EAAE,EAAE,CAAC,WAAW,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/Footer/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAG3C,MAAM,MAAM,UAAU,GAAG;IACvB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,SAAS,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;CACf,CAAC;AAEF,MAAM,MAAM,SAAS,GAAG;IAAE,KAAK,EAAE,SAAS,CAAC;IAAC,KAAK,EAAE,UAAU,EAAE,CAAA;CAAE,CAAC;AAElE,KAAK,WAAW,GAAG;IAAE,KAAK,CAAC,EAAE,SAAS,EAAE,CAAA;CAAE,CAAC;AAE3C,eAAO,MAAM,MAAM,EAAE,EAAE,CAAC,WAAW,CA6BlC,CAAC"}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { Logo } from "../Logo/index.mjs";
|
|
3
|
+
import { SocialNetworks } from "../SocialNetworks/index.mjs";
|
|
3
4
|
const Footer = ({ links }) => /* @__PURE__ */ jsxs("footer", { className: "flex flex-auto flex-row flex-wrap items-center justify-around gap-10 p-6", children: [
|
|
4
|
-
/* @__PURE__ */ jsxs("aside", { className: "flex flex-col items-center justify-between md:w-1/4", children: [
|
|
5
|
-
/* @__PURE__ */ jsx(Logo, { type: "logoWithTextBelow",
|
|
6
|
-
/* @__PURE__ */ jsx("span", { className: "text-neutral text-center text-xs", children: "© 2024 Intlayer, Inc." })
|
|
5
|
+
/* @__PURE__ */ jsxs("aside", { className: "flex flex-col items-center justify-between md:w-1/4 gap-3", children: [
|
|
6
|
+
/* @__PURE__ */ jsx(Logo, { type: "logoWithTextBelow", className: "size-full max-w-[120px]" }),
|
|
7
|
+
/* @__PURE__ */ jsx("span", { className: "text-neutral text-center text-xs", children: "© 2024 Intlayer, Inc." }),
|
|
8
|
+
/* @__PURE__ */ jsx("div", { className: "flex flex-row gap-3", children: /* @__PURE__ */ jsx(SocialNetworks, {}) })
|
|
7
9
|
] }),
|
|
8
10
|
/* @__PURE__ */ jsx("div", { className: "m-auto flex w-full flex-row flex-wrap justify-around gap-x-3 gap-y-6 md:w-2/3", children: (links ?? []).map(({ title, links: links2 }) => /* @__PURE__ */ jsxs(
|
|
9
11
|
"div",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../src/components/Footer/index.tsx"],"sourcesContent":["import type { FC, ReactNode } from 'react';\nimport { Logo } from '../Logo';\
|
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../src/components/Footer/index.tsx"],"sourcesContent":["import type { FC, ReactNode } from 'react';\nimport { Logo } from '../Logo';\nimport { SocialNetworks } from '../SocialNetworks';\nexport type FooterLink = {\n href: string;\n text: ReactNode;\n onClick?: () => void;\n label: string;\n};\n\nexport type LinkGroup = { title: ReactNode; links: FooterLink[] };\n\ntype FooterProps = { links?: LinkGroup[] };\n\nexport const Footer: FC<FooterProps> = ({ links }) => (\n <footer className=\"flex flex-auto flex-row flex-wrap items-center justify-around gap-10 p-6\">\n <aside className=\"flex flex-col items-center justify-between md:w-1/4 gap-3\">\n <Logo type=\"logoWithTextBelow\" className=\"size-full max-w-[120px]\" />\n <span className=\"text-neutral text-center text-xs\">\n © 2024 Intlayer, Inc.\n </span>\n <div className=\"flex flex-row gap-3\">\n <SocialNetworks />\n </div>\n </aside>\n <div className=\"m-auto flex w-full flex-row flex-wrap justify-around gap-x-3 gap-y-6 md:w-2/3\">\n {(links ?? []).map(({ title, links }) => (\n <div\n className=\"flex flex-col gap-2\"\n key={links.map((link) => link.href).join(',')}\n >\n <strong>{title}</strong>\n <div className=\"flex flex-col gap-3 text-sm\">\n {links.map((link) => (\n <a key={link.href} href={link.href} aria-label={link.label}>\n {link.text}\n </a>\n ))}\n </div>\n </div>\n ))}\n </div>\n </footer>\n);\n"],"names":["links"],"mappings":";;;AAca,MAAA,SAA0B,CAAC,EAAE,YACvC,qBAAA,UAAA,EAAO,WAAU,4EAChB,UAAA;AAAA,EAAC,qBAAA,SAAA,EAAM,WAAU,6DACf,UAAA;AAAA,IAAA,oBAAC,MAAK,EAAA,MAAK,qBAAoB,WAAU,2BAA0B;AAAA,IAClE,oBAAA,QAAA,EAAK,WAAU,oCAAmC,UAEnD,yBAAA;AAAA,wBACC,OAAI,EAAA,WAAU,uBACb,UAAA,oBAAC,kBAAe,EAClB,CAAA;AAAA,EAAA,GACF;AAAA,EACC,oBAAA,OAAA,EAAI,WAAU,iFACX,WAAS,SAAA,CAAA,GAAI,IAAI,CAAC,EAAE,OAAO,OAAAA,OAC3B,MAAA;AAAA,IAAC;AAAA,IAAA;AAAA,MACC,WAAU;AAAA,MAGV,UAAA;AAAA,QAAA,oBAAC,YAAQ,UAAM,MAAA,CAAA;AAAA,QACf,oBAAC,SAAI,WAAU,+BACZ,UAAAA,OAAM,IAAI,CAAC,SACT,oBAAA,KAAA,EAAkB,MAAM,KAAK,MAAM,cAAY,KAAK,OAClD,eAAK,KADA,GAAA,KAAK,IAEb,CACD,EACH,CAAA;AAAA,MAAA;AAAA,IAAA;AAAA,IATKA,OAAM,IAAI,CAAC,SAAS,KAAK,IAAI,EAAE,KAAK,GAAG;AAAA,EAAA,CAW/C,EACH,CAAA;AAAA,EACF,CAAA;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const FacebookLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 50 50",
|
|
9
|
+
width: "50px",
|
|
10
|
+
height: "50px",
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M25,3C12.85,3,3,12.85,3,25c0,11.03,8.125,20.137,18.712,21.728V30.831h-5.443v-5.783h5.443v-3.848 c0-6.371,3.104-9.168,8.399-9.168c2.536,0,3.877,0.188,4.512,0.274v5.048h-3.612c-2.248,0-3.033,2.131-3.033,4.533v3.161h6.588 l-0.894,5.783h-5.694v15.944C38.716,45.318,47,36.137,47,25C47,12.85,37.15,3,25,3z" })
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
exports.FacebookLogo = FacebookLogo;
|
|
17
|
+
//# sourceMappingURL=FacebookLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacebookLogo.cjs","sources":["../../../src/components/SocialNetworks/FacebookLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const FacebookLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 50 50\"\n width=\"50px\"\n height=\"50px\"\n fill=\"currentColor\"\n {...props}\n >\n <path d=\"M25,3C12.85,3,3,12.85,3,25c0,11.03,8.125,20.137,18.712,21.728V30.831h-5.443v-5.783h5.443v-3.848 c0-6.371,3.104-9.168,8.399-9.168c2.536,0,3.877,0.188,4.512,0.274v5.048h-3.612c-2.248,0-3.033,2.131-3.033,4.533v3.161h6.588 l-0.894,5.783h-5.694v15.944C38.716,45.318,47,36.137,47,25C47,12.85,37.15,3,25,3z\" />\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,eAA4C,CAAC,UACxDA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,QAAO;AAAA,IACP,MAAK;AAAA,IACJ,GAAG;AAAA,IAEJ,UAAAA,2BAAAA,IAAC,QAAK,EAAA,GAAE,8SAA8S,CAAA;AAAA,EAAA;AACxT;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacebookLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/FacebookLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAWpD,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const FacebookLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 50 50",
|
|
7
|
+
width: "50px",
|
|
8
|
+
height: "50px",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
...props,
|
|
11
|
+
children: /* @__PURE__ */ jsx("path", { d: "M25,3C12.85,3,3,12.85,3,25c0,11.03,8.125,20.137,18.712,21.728V30.831h-5.443v-5.783h5.443v-3.848 c0-6.371,3.104-9.168,8.399-9.168c2.536,0,3.877,0.188,4.512,0.274v5.048h-3.612c-2.248,0-3.033,2.131-3.033,4.533v3.161h6.588 l-0.894,5.783h-5.694v15.944C38.716,45.318,47,36.137,47,25C47,12.85,37.15,3,25,3z" })
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
export {
|
|
15
|
+
FacebookLogo
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=FacebookLogo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FacebookLogo.mjs","sources":["../../../src/components/SocialNetworks/FacebookLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const FacebookLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 50 50\"\n width=\"50px\"\n height=\"50px\"\n fill=\"currentColor\"\n {...props}\n >\n <path d=\"M25,3C12.85,3,3,12.85,3,25c0,11.03,8.125,20.137,18.712,21.728V30.831h-5.443v-5.783h5.443v-3.848 c0-6.371,3.104-9.168,8.399-9.168c2.536,0,3.877,0.188,4.512,0.274v5.048h-3.612c-2.248,0-3.033,2.131-3.033,4.533v3.161h6.588 l-0.894,5.783h-5.694v15.944C38.716,45.318,47,36.137,47,25C47,12.85,37.15,3,25,3z\" />\n </svg>\n);\n"],"names":[],"mappings":";AAEa,MAAA,eAA4C,CAAC,UACxD;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,QAAO;AAAA,IACP,MAAK;AAAA,IACJ,GAAG;AAAA,IAEJ,UAAA,oBAAC,QAAK,EAAA,GAAE,8SAA8S,CAAA;AAAA,EAAA;AACxT;"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const InstagramLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
width: "800px",
|
|
8
|
+
height: "800px",
|
|
9
|
+
viewBox: "0 0 20 20",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", { stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsxRuntime.jsx("g", { transform: "translate(-340.000000, -7439.000000)", fill: "currentColor", children: /* @__PURE__ */ jsxRuntime.jsx("g", { transform: "translate(56.000000, 160.000000)", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M289.869652,7279.12273 C288.241769,7279.19618 286.830805,7279.5942 285.691486,7280.72871 C284.548187,7281.86918 284.155147,7283.28558 284.081514,7284.89653 C284.035742,7285.90201 283.768077,7293.49818 284.544207,7295.49028 C285.067597,7296.83422 286.098457,7297.86749 287.454694,7298.39256 C288.087538,7298.63872 288.809936,7298.80547 289.869652,7298.85411 C298.730467,7299.25511 302.015089,7299.03674 303.400182,7295.49028 C303.645956,7294.859 303.815113,7294.1374 303.86188,7293.08031 C304.26686,7284.19677 303.796207,7282.27117 302.251908,7280.72871 C301.027016,7279.50685 299.5862,7278.67508 289.869652,7279.12273 M289.951245,7297.06748 C288.981083,7297.0238 288.454707,7296.86201 288.103459,7296.72603 C287.219865,7296.3826 286.556174,7295.72155 286.214876,7294.84312 C285.623823,7293.32944 285.819846,7286.14023 285.872583,7284.97693 C285.924325,7283.83745 286.155174,7282.79624 286.959165,7281.99226 C287.954203,7280.99968 289.239792,7280.51332 297.993144,7280.90837 C299.135448,7280.95998 300.179243,7281.19026 300.985224,7281.99226 C301.980262,7282.98483 302.473801,7284.28014 302.071806,7292.99991 C302.028024,7293.96767 301.865833,7294.49274 301.729513,7294.84312 C300.829003,7297.15085 298.757333,7297.47145 289.951245,7297.06748 M298.089663,7283.68956 C298.089663,7284.34665 298.623998,7284.88065 299.283709,7284.88065 C299.943419,7284.88065 300.47875,7284.34665 300.47875,7283.68956 C300.47875,7283.03248 299.943419,7282.49847 299.283709,7282.49847 C298.623998,7282.49847 298.089663,7283.03248 298.089663,7283.68956 M288.862673,7288.98792 C288.862673,7291.80286 291.150266,7294.08479 293.972194,7294.08479 C296.794123,7294.08479 299.081716,7291.80286 299.081716,7288.98792 C299.081716,7286.17298 296.794123,7283.89205 293.972194,7283.89205 C291.150266,7283.89205 288.862673,7286.17298 288.862673,7288.98792 M290.655732,7288.98792 C290.655732,7287.16159 292.140329,7285.67967 293.972194,7285.67967 C295.80406,7285.67967 297.288657,7287.16159 297.288657,7288.98792 C297.288657,7290.81525 295.80406,7292.29716 293.972194,7292.29716 C292.140329,7292.29716 290.655732,7290.81525 290.655732,7288.98792" }) }) }) })
|
|
13
|
+
}
|
|
14
|
+
);
|
|
15
|
+
exports.InstagramLogo = InstagramLogo;
|
|
16
|
+
//# sourceMappingURL=InstagramLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstagramLogo.cjs","sources":["../../../src/components/SocialNetworks/InstagramLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const InstagramLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 20 20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <g stroke=\"none\" strokeWidth=\"1\" fill=\"none\" fillRule=\"evenodd\">\n <g transform=\"translate(-340.000000, -7439.000000)\" fill=\"currentColor\">\n <g transform=\"translate(56.000000, 160.000000)\">\n <path d=\"M289.869652,7279.12273 C288.241769,7279.19618 286.830805,7279.5942 285.691486,7280.72871 C284.548187,7281.86918 284.155147,7283.28558 284.081514,7284.89653 C284.035742,7285.90201 283.768077,7293.49818 284.544207,7295.49028 C285.067597,7296.83422 286.098457,7297.86749 287.454694,7298.39256 C288.087538,7298.63872 288.809936,7298.80547 289.869652,7298.85411 C298.730467,7299.25511 302.015089,7299.03674 303.400182,7295.49028 C303.645956,7294.859 303.815113,7294.1374 303.86188,7293.08031 C304.26686,7284.19677 303.796207,7282.27117 302.251908,7280.72871 C301.027016,7279.50685 299.5862,7278.67508 289.869652,7279.12273 M289.951245,7297.06748 C288.981083,7297.0238 288.454707,7296.86201 288.103459,7296.72603 C287.219865,7296.3826 286.556174,7295.72155 286.214876,7294.84312 C285.623823,7293.32944 285.819846,7286.14023 285.872583,7284.97693 C285.924325,7283.83745 286.155174,7282.79624 286.959165,7281.99226 C287.954203,7280.99968 289.239792,7280.51332 297.993144,7280.90837 C299.135448,7280.95998 300.179243,7281.19026 300.985224,7281.99226 C301.980262,7282.98483 302.473801,7284.28014 302.071806,7292.99991 C302.028024,7293.96767 301.865833,7294.49274 301.729513,7294.84312 C300.829003,7297.15085 298.757333,7297.47145 289.951245,7297.06748 M298.089663,7283.68956 C298.089663,7284.34665 298.623998,7284.88065 299.283709,7284.88065 C299.943419,7284.88065 300.47875,7284.34665 300.47875,7283.68956 C300.47875,7283.03248 299.943419,7282.49847 299.283709,7282.49847 C298.623998,7282.49847 298.089663,7283.03248 298.089663,7283.68956 M288.862673,7288.98792 C288.862673,7291.80286 291.150266,7294.08479 293.972194,7294.08479 C296.794123,7294.08479 299.081716,7291.80286 299.081716,7288.98792 C299.081716,7286.17298 296.794123,7283.89205 293.972194,7283.89205 C291.150266,7283.89205 288.862673,7286.17298 288.862673,7288.98792 M290.655732,7288.98792 C290.655732,7287.16159 292.140329,7285.67967 293.972194,7285.67967 C295.80406,7285.67967 297.288657,7287.16159 297.288657,7288.98792 C297.288657,7290.81525 295.80406,7292.29716 293.972194,7292.29716 C292.140329,7292.29716 290.655732,7290.81525 290.655732,7288.98792\"></path>\n </g>\n </g>\n </g>\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,gBAA6C,CAAC,UACzDA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAAA,2BAAA,IAAC,KAAE,EAAA,QAAO,QAAO,aAAY,KAAI,MAAK,QAAO,UAAS,WACpD,UAAAA,2BAAA,IAAC,KAAE,EAAA,WAAU,wCAAuC,MAAK,gBACvD,UAACA,2BAAA,IAAA,KAAA,EAAE,WAAU,oCACX,UAACA,2BAAA,IAAA,QAAA,EAAK,GAAE,gkEAAA,CAAgkE,EAC1kE,CAAA,EAAA,CACF,EACF,CAAA;AAAA,EAAA;AACF;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstagramLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/InstagramLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,aAAa,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAgBrD,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const InstagramLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
width: "800px",
|
|
6
|
+
height: "800px",
|
|
7
|
+
viewBox: "0 0 20 20",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: /* @__PURE__ */ jsx("g", { stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { transform: "translate(-340.000000, -7439.000000)", fill: "currentColor", children: /* @__PURE__ */ jsx("g", { transform: "translate(56.000000, 160.000000)", children: /* @__PURE__ */ jsx("path", { d: "M289.869652,7279.12273 C288.241769,7279.19618 286.830805,7279.5942 285.691486,7280.72871 C284.548187,7281.86918 284.155147,7283.28558 284.081514,7284.89653 C284.035742,7285.90201 283.768077,7293.49818 284.544207,7295.49028 C285.067597,7296.83422 286.098457,7297.86749 287.454694,7298.39256 C288.087538,7298.63872 288.809936,7298.80547 289.869652,7298.85411 C298.730467,7299.25511 302.015089,7299.03674 303.400182,7295.49028 C303.645956,7294.859 303.815113,7294.1374 303.86188,7293.08031 C304.26686,7284.19677 303.796207,7282.27117 302.251908,7280.72871 C301.027016,7279.50685 299.5862,7278.67508 289.869652,7279.12273 M289.951245,7297.06748 C288.981083,7297.0238 288.454707,7296.86201 288.103459,7296.72603 C287.219865,7296.3826 286.556174,7295.72155 286.214876,7294.84312 C285.623823,7293.32944 285.819846,7286.14023 285.872583,7284.97693 C285.924325,7283.83745 286.155174,7282.79624 286.959165,7281.99226 C287.954203,7280.99968 289.239792,7280.51332 297.993144,7280.90837 C299.135448,7280.95998 300.179243,7281.19026 300.985224,7281.99226 C301.980262,7282.98483 302.473801,7284.28014 302.071806,7292.99991 C302.028024,7293.96767 301.865833,7294.49274 301.729513,7294.84312 C300.829003,7297.15085 298.757333,7297.47145 289.951245,7297.06748 M298.089663,7283.68956 C298.089663,7284.34665 298.623998,7284.88065 299.283709,7284.88065 C299.943419,7284.88065 300.47875,7284.34665 300.47875,7283.68956 C300.47875,7283.03248 299.943419,7282.49847 299.283709,7282.49847 C298.623998,7282.49847 298.089663,7283.03248 298.089663,7283.68956 M288.862673,7288.98792 C288.862673,7291.80286 291.150266,7294.08479 293.972194,7294.08479 C296.794123,7294.08479 299.081716,7291.80286 299.081716,7288.98792 C299.081716,7286.17298 296.794123,7283.89205 293.972194,7283.89205 C291.150266,7283.89205 288.862673,7286.17298 288.862673,7288.98792 M290.655732,7288.98792 C290.655732,7287.16159 292.140329,7285.67967 293.972194,7285.67967 C295.80406,7285.67967 297.288657,7287.16159 297.288657,7288.98792 C297.288657,7290.81525 295.80406,7292.29716 293.972194,7292.29716 C292.140329,7292.29716 290.655732,7290.81525 290.655732,7288.98792" }) }) }) })
|
|
11
|
+
}
|
|
12
|
+
);
|
|
13
|
+
export {
|
|
14
|
+
InstagramLogo
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=InstagramLogo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InstagramLogo.mjs","sources":["../../../src/components/SocialNetworks/InstagramLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const InstagramLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 20 20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <g stroke=\"none\" strokeWidth=\"1\" fill=\"none\" fillRule=\"evenodd\">\n <g transform=\"translate(-340.000000, -7439.000000)\" fill=\"currentColor\">\n <g transform=\"translate(56.000000, 160.000000)\">\n <path d=\"M289.869652,7279.12273 C288.241769,7279.19618 286.830805,7279.5942 285.691486,7280.72871 C284.548187,7281.86918 284.155147,7283.28558 284.081514,7284.89653 C284.035742,7285.90201 283.768077,7293.49818 284.544207,7295.49028 C285.067597,7296.83422 286.098457,7297.86749 287.454694,7298.39256 C288.087538,7298.63872 288.809936,7298.80547 289.869652,7298.85411 C298.730467,7299.25511 302.015089,7299.03674 303.400182,7295.49028 C303.645956,7294.859 303.815113,7294.1374 303.86188,7293.08031 C304.26686,7284.19677 303.796207,7282.27117 302.251908,7280.72871 C301.027016,7279.50685 299.5862,7278.67508 289.869652,7279.12273 M289.951245,7297.06748 C288.981083,7297.0238 288.454707,7296.86201 288.103459,7296.72603 C287.219865,7296.3826 286.556174,7295.72155 286.214876,7294.84312 C285.623823,7293.32944 285.819846,7286.14023 285.872583,7284.97693 C285.924325,7283.83745 286.155174,7282.79624 286.959165,7281.99226 C287.954203,7280.99968 289.239792,7280.51332 297.993144,7280.90837 C299.135448,7280.95998 300.179243,7281.19026 300.985224,7281.99226 C301.980262,7282.98483 302.473801,7284.28014 302.071806,7292.99991 C302.028024,7293.96767 301.865833,7294.49274 301.729513,7294.84312 C300.829003,7297.15085 298.757333,7297.47145 289.951245,7297.06748 M298.089663,7283.68956 C298.089663,7284.34665 298.623998,7284.88065 299.283709,7284.88065 C299.943419,7284.88065 300.47875,7284.34665 300.47875,7283.68956 C300.47875,7283.03248 299.943419,7282.49847 299.283709,7282.49847 C298.623998,7282.49847 298.089663,7283.03248 298.089663,7283.68956 M288.862673,7288.98792 C288.862673,7291.80286 291.150266,7294.08479 293.972194,7294.08479 C296.794123,7294.08479 299.081716,7291.80286 299.081716,7288.98792 C299.081716,7286.17298 296.794123,7283.89205 293.972194,7283.89205 C291.150266,7283.89205 288.862673,7286.17298 288.862673,7288.98792 M290.655732,7288.98792 C290.655732,7287.16159 292.140329,7285.67967 293.972194,7285.67967 C295.80406,7285.67967 297.288657,7287.16159 297.288657,7288.98792 C297.288657,7290.81525 295.80406,7292.29716 293.972194,7292.29716 C292.140329,7292.29716 290.655732,7290.81525 290.655732,7288.98792\"></path>\n </g>\n </g>\n </g>\n </svg>\n);\n"],"names":[],"mappings":";AAEa,MAAA,gBAA6C,CAAC,UACzD;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAA,oBAAC,KAAE,EAAA,QAAO,QAAO,aAAY,KAAI,MAAK,QAAO,UAAS,WACpD,UAAA,oBAAC,KAAE,EAAA,WAAU,wCAAuC,MAAK,gBACvD,UAAC,oBAAA,KAAA,EAAE,WAAU,oCACX,UAAC,oBAAA,QAAA,EAAK,GAAE,gkEAAA,CAAgkE,EAC1kE,CAAA,EAAA,CACF,EACF,CAAA;AAAA,EAAA;AACF;"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const LinkedInLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
width: "800px",
|
|
8
|
+
height: "800px",
|
|
9
|
+
viewBox: "0 0 20 20",
|
|
10
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
11
|
+
...props,
|
|
12
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("g", { stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsxRuntime.jsx("g", { transform: "translate(-180.000000, -7479.000000)", fill: "currentColor", children: /* @__PURE__ */ jsxRuntime.jsx("g", { transform: "translate(56.000000, 160.000000)", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
13
|
+
"path",
|
|
14
|
+
{
|
|
15
|
+
d: "M144,7339 L140,7339 L140,7332.001 C140,7330.081 139.153,7329.01 137.634,7329.01 C135.981,7329.01 135,7330.126 135,7332.001 L135,7339 L131,7339 L131,7326 L135,7326 L135,7327.462 C135,7327.462 136.255,7325.26 139.083,7325.26 C141.912,7325.26 144,7326.986 144,7330.558 L144,7339 L144,7339 Z M126.442,7323.921 C125.093,7323.921 124,7322.819 124,7321.46 C124,7320.102 125.093,7319 126.442,7319 C127.79,7319 128.883,7320.102 128.883,7321.46 C128.884,7322.819 127.79,7323.921 126.442,7323.921 L126.442,7323.921 Z M124,7339 L129,7339 L129,7326 L124,7326 L124,7339 Z",
|
|
16
|
+
id: "linkedin-[#161]"
|
|
17
|
+
}
|
|
18
|
+
) }) }) })
|
|
19
|
+
}
|
|
20
|
+
);
|
|
21
|
+
exports.LinkedInLogo = LinkedInLogo;
|
|
22
|
+
//# sourceMappingURL=LinkedInLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LinkedInLogo.cjs","sources":["../../../src/components/SocialNetworks/LinkedInLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const LinkedInLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 20 20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <g stroke=\"none\" strokeWidth=\"1\" fill=\"none\" fillRule=\"evenodd\">\n <g transform=\"translate(-180.000000, -7479.000000)\" fill=\"currentColor\">\n <g transform=\"translate(56.000000, 160.000000)\">\n <path\n d=\"M144,7339 L140,7339 L140,7332.001 C140,7330.081 139.153,7329.01 137.634,7329.01 C135.981,7329.01 135,7330.126 135,7332.001 L135,7339 L131,7339 L131,7326 L135,7326 L135,7327.462 C135,7327.462 136.255,7325.26 139.083,7325.26 C141.912,7325.26 144,7326.986 144,7330.558 L144,7339 L144,7339 Z M126.442,7323.921 C125.093,7323.921 124,7322.819 124,7321.46 C124,7320.102 125.093,7319 126.442,7319 C127.79,7319 128.883,7320.102 128.883,7321.46 C128.884,7322.819 127.79,7323.921 126.442,7323.921 L126.442,7323.921 Z M124,7339 L129,7339 L129,7326 L124,7326 L124,7339 Z\"\n id=\"linkedin-[#161]\"\n ></path>\n </g>\n </g>\n </g>\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,eAA4C,CAAC,UACxDA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,yCAAC,KAAE,EAAA,QAAO,QAAO,aAAY,KAAI,MAAK,QAAO,UAAS,WACpD,UAACA,+BAAA,KAAA,EAAE,WAAU,wCAAuC,MAAK,gBACvD,UAACA,2BAAA,IAAA,KAAA,EAAE,WAAU,oCACX,UAAAA,2BAAA;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,GAAE;AAAA,QACF,IAAG;AAAA,MAAA;AAAA,IAAA,EAEP,CAAA,EACF,CAAA,EACF,CAAA;AAAA,EAAA;AACF;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LinkedInLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/LinkedInLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,YAAY,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAmBpD,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const LinkedInLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
width: "800px",
|
|
6
|
+
height: "800px",
|
|
7
|
+
viewBox: "0 0 20 20",
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
...props,
|
|
10
|
+
children: /* @__PURE__ */ jsx("g", { stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsx("g", { transform: "translate(-180.000000, -7479.000000)", fill: "currentColor", children: /* @__PURE__ */ jsx("g", { transform: "translate(56.000000, 160.000000)", children: /* @__PURE__ */ jsx(
|
|
11
|
+
"path",
|
|
12
|
+
{
|
|
13
|
+
d: "M144,7339 L140,7339 L140,7332.001 C140,7330.081 139.153,7329.01 137.634,7329.01 C135.981,7329.01 135,7330.126 135,7332.001 L135,7339 L131,7339 L131,7326 L135,7326 L135,7327.462 C135,7327.462 136.255,7325.26 139.083,7325.26 C141.912,7325.26 144,7326.986 144,7330.558 L144,7339 L144,7339 Z M126.442,7323.921 C125.093,7323.921 124,7322.819 124,7321.46 C124,7320.102 125.093,7319 126.442,7319 C127.79,7319 128.883,7320.102 128.883,7321.46 C128.884,7322.819 127.79,7323.921 126.442,7323.921 L126.442,7323.921 Z M124,7339 L129,7339 L129,7326 L124,7326 L124,7339 Z",
|
|
14
|
+
id: "linkedin-[#161]"
|
|
15
|
+
}
|
|
16
|
+
) }) }) })
|
|
17
|
+
}
|
|
18
|
+
);
|
|
19
|
+
export {
|
|
20
|
+
LinkedInLogo
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=LinkedInLogo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LinkedInLogo.mjs","sources":["../../../src/components/SocialNetworks/LinkedInLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const LinkedInLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 20 20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <g stroke=\"none\" strokeWidth=\"1\" fill=\"none\" fillRule=\"evenodd\">\n <g transform=\"translate(-180.000000, -7479.000000)\" fill=\"currentColor\">\n <g transform=\"translate(56.000000, 160.000000)\">\n <path\n d=\"M144,7339 L140,7339 L140,7332.001 C140,7330.081 139.153,7329.01 137.634,7329.01 C135.981,7329.01 135,7330.126 135,7332.001 L135,7339 L131,7339 L131,7326 L135,7326 L135,7327.462 C135,7327.462 136.255,7325.26 139.083,7325.26 C141.912,7325.26 144,7326.986 144,7330.558 L144,7339 L144,7339 Z M126.442,7323.921 C125.093,7323.921 124,7322.819 124,7321.46 C124,7320.102 125.093,7319 126.442,7319 C127.79,7319 128.883,7320.102 128.883,7321.46 C128.884,7322.819 127.79,7323.921 126.442,7323.921 L126.442,7323.921 Z M124,7339 L129,7339 L129,7326 L124,7326 L124,7339 Z\"\n id=\"linkedin-[#161]\"\n ></path>\n </g>\n </g>\n </g>\n </svg>\n);\n"],"names":[],"mappings":";AAEa,MAAA,eAA4C,CAAC,UACxD;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,8BAAC,KAAE,EAAA,QAAO,QAAO,aAAY,KAAI,MAAK,QAAO,UAAS,WACpD,UAAC,oBAAA,KAAA,EAAE,WAAU,wCAAuC,MAAK,gBACvD,UAAC,oBAAA,KAAA,EAAE,WAAU,oCACX,UAAA;AAAA,MAAC;AAAA,MAAA;AAAA,QACC,GAAE;AAAA,QACF,IAAG;AAAA,MAAA;AAAA,IAAA,EAEP,CAAA,EACF,CAAA,EACF,CAAA;AAAA,EAAA;AACF;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const ProductHuntLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
width: "800px",
|
|
9
|
+
height: "800px",
|
|
10
|
+
viewBox: "0 0 32 32",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.394 13.675c0 1.281-1.044 2.325-2.325 2.325h-4.394v-4.65h4.394c1.281 0 2.325 1.044 2.325 2.325zM31.5 16c0 8.563-6.938 15.5-15.5 15.5s-15.5-6.938-15.5-15.5c0-8.563 6.938-15.5 15.5-15.5s15.5 6.938 15.5 15.5zM23.494 13.675c0-2.994-2.431-5.425-5.425-5.425h-7.494v15.5h3.1v-4.65h4.394c2.994 0 5.425-2.431 5.425-5.425z" })
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
exports.ProductHuntLogo = ProductHuntLogo;
|
|
17
|
+
//# sourceMappingURL=ProductHuntLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProductHuntLogo.cjs","sources":["../../../src/components/SocialNetworks/ProductHuntLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const ProductHuntLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n fill=\"currentColor\"\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 32 32\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path d=\"M20.394 13.675c0 1.281-1.044 2.325-2.325 2.325h-4.394v-4.65h4.394c1.281 0 2.325 1.044 2.325 2.325zM31.5 16c0 8.563-6.938 15.5-15.5 15.5s-15.5-6.938-15.5-15.5c0-8.563 6.938-15.5 15.5-15.5s15.5 6.938 15.5 15.5zM23.494 13.675c0-2.994-2.431-5.425-5.425-5.425h-7.494v15.5h3.1v-4.65h4.394c2.994 0 5.425-2.431 5.425-5.425z\" />\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,kBAA+C,CAAC,UAC3DA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,MAAK;AAAA,IACL,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAAA,2BAAAA,IAAC,QAAK,EAAA,GAAE,8TAA8T,CAAA;AAAA,EAAA;AACxU;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProductHuntLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/ProductHuntLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAWvD,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const ProductHuntLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
width: "800px",
|
|
7
|
+
height: "800px",
|
|
8
|
+
viewBox: "0 0 32 32",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: /* @__PURE__ */ jsx("path", { d: "M20.394 13.675c0 1.281-1.044 2.325-2.325 2.325h-4.394v-4.65h4.394c1.281 0 2.325 1.044 2.325 2.325zM31.5 16c0 8.563-6.938 15.5-15.5 15.5s-15.5-6.938-15.5-15.5c0-8.563 6.938-15.5 15.5-15.5s15.5 6.938 15.5 15.5zM23.494 13.675c0-2.994-2.431-5.425-5.425-5.425h-7.494v15.5h3.1v-4.65h4.394c2.994 0 5.425-2.431 5.425-5.425z" })
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
export {
|
|
15
|
+
ProductHuntLogo
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=ProductHuntLogo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ProductHuntLogo.mjs","sources":["../../../src/components/SocialNetworks/ProductHuntLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const ProductHuntLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n fill=\"currentColor\"\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 32 32\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path d=\"M20.394 13.675c0 1.281-1.044 2.325-2.325 2.325h-4.394v-4.65h4.394c1.281 0 2.325 1.044 2.325 2.325zM31.5 16c0 8.563-6.938 15.5-15.5 15.5s-15.5-6.938-15.5-15.5c0-8.563 6.938-15.5 15.5-15.5s15.5 6.938 15.5 15.5zM23.494 13.675c0-2.994-2.431-5.425-5.425-5.425h-7.494v15.5h3.1v-4.65h4.394c2.994 0 5.425-2.431 5.425-5.425z\" />\n </svg>\n);\n"],"names":[],"mappings":";AAEa,MAAA,kBAA+C,CAAC,UAC3D;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,MAAK;AAAA,IACL,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAA,oBAAC,QAAK,EAAA,GAAE,8TAA8T,CAAA;AAAA,EAAA;AACxU;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const TiktokLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
width: "800px",
|
|
9
|
+
height: "800px",
|
|
10
|
+
viewBox: "0 0 24 24",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19.589 6.686a4.793 4.793 0 0 1-3.77-4.245V2h-3.445v13.672a2.896 2.896 0 0 1-5.201 1.743l-.002-.001.002.001a2.895 2.895 0 0 1 3.183-4.51v-3.5a6.329 6.329 0 0 0-5.394 10.692 6.33 6.33 0 0 0 10.857-4.424V8.687a8.182 8.182 0 0 0 4.773 1.526V6.79a4.831 4.831 0 0 1-1.003-.104z" })
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
exports.TiktokLogo = TiktokLogo;
|
|
17
|
+
//# sourceMappingURL=TiktokLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TiktokLogo.cjs","sources":["../../../src/components/SocialNetworks/TiktokLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const TiktokLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n fill=\"currentColor\"\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 24 24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path d=\"M19.589 6.686a4.793 4.793 0 0 1-3.77-4.245V2h-3.445v13.672a2.896 2.896 0 0 1-5.201 1.743l-.002-.001.002.001a2.895 2.895 0 0 1 3.183-4.51v-3.5a6.329 6.329 0 0 0-5.394 10.692 6.33 6.33 0 0 0 10.857-4.424V8.687a8.182 8.182 0 0 0 4.773 1.526V6.79a4.831 4.831 0 0 1-1.003-.104z\" />\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,aAA0C,CAAC,UACtDA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,MAAK;AAAA,IACL,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAAA,2BAAAA,IAAC,QAAK,EAAA,GAAE,mRAAmR,CAAA;AAAA,EAAA;AAC7R;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TiktokLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/TiktokLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,UAAU,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAWlD,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const TiktokLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
width: "800px",
|
|
7
|
+
height: "800px",
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: /* @__PURE__ */ jsx("path", { d: "M19.589 6.686a4.793 4.793 0 0 1-3.77-4.245V2h-3.445v13.672a2.896 2.896 0 0 1-5.201 1.743l-.002-.001.002.001a2.895 2.895 0 0 1 3.183-4.51v-3.5a6.329 6.329 0 0 0-5.394 10.692 6.33 6.33 0 0 0 10.857-4.424V8.687a8.182 8.182 0 0 0 4.773 1.526V6.79a4.831 4.831 0 0 1-1.003-.104z" })
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
export {
|
|
15
|
+
TiktokLogo
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=TiktokLogo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TiktokLogo.mjs","sources":["../../../src/components/SocialNetworks/TiktokLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const TiktokLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n fill=\"currentColor\"\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 24 24\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path d=\"M19.589 6.686a4.793 4.793 0 0 1-3.77-4.245V2h-3.445v13.672a2.896 2.896 0 0 1-5.201 1.743l-.002-.001.002.001a2.895 2.895 0 0 1 3.183-4.51v-3.5a6.329 6.329 0 0 0-5.394 10.692 6.33 6.33 0 0 0 10.857-4.424V8.687a8.182 8.182 0 0 0 4.773 1.526V6.79a4.831 4.831 0 0 1-1.003-.104z\" />\n </svg>\n);\n"],"names":[],"mappings":";AAEa,MAAA,aAA0C,CAAC,UACtD;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,MAAK;AAAA,IACL,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAA,oBAAC,QAAK,EAAA,GAAE,mRAAmR,CAAA;AAAA,EAAA;AAC7R;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const XLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
+
viewBox: "0 0 300 271",
|
|
9
|
+
width: "300",
|
|
10
|
+
height: "271",
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "m236 0h46l-101 115 118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123-113-148h94.9l65.5 86.6zm-16.1 244h25.5l-165-218h-27.4z" })
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
exports.XLogo = XLogo;
|
|
17
|
+
//# sourceMappingURL=XLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XLogo.cjs","sources":["../../../src/components/SocialNetworks/XLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const XLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 300 271\"\n width=\"300\"\n height=\"271\"\n fill=\"currentColor\"\n {...props}\n >\n <path d=\"m236 0h46l-101 115 118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123-113-148h94.9l65.5 86.6zm-16.1 244h25.5l-165-218h-27.4z\" />\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,QAAqC,CAAC,UACjDA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,QAAO;AAAA,IACP,MAAK;AAAA,IACJ,GAAG;AAAA,IAEJ,UAAAA,2BAAAA,IAAC,QAAK,EAAA,GAAE,yHAAyH,CAAA;AAAA,EAAA;AACnI;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/XLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,KAAK,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAW7C,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const XLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
viewBox: "0 0 300 271",
|
|
7
|
+
width: "300",
|
|
8
|
+
height: "271",
|
|
9
|
+
fill: "currentColor",
|
|
10
|
+
...props,
|
|
11
|
+
children: /* @__PURE__ */ jsx("path", { d: "m236 0h46l-101 115 118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123-113-148h94.9l65.5 86.6zm-16.1 244h25.5l-165-218h-27.4z" })
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
export {
|
|
15
|
+
XLogo
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=XLogo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"XLogo.mjs","sources":["../../../src/components/SocialNetworks/XLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const XLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n xmlns=\"http://www.w3.org/2000/svg\"\n viewBox=\"0 0 300 271\"\n width=\"300\"\n height=\"271\"\n fill=\"currentColor\"\n {...props}\n >\n <path d=\"m236 0h46l-101 115 118 156h-92.6l-72.5-94.8-83 94.8h-46l107-123-113-148h94.9l65.5 86.6zm-16.1 244h25.5l-165-218h-27.4z\" />\n </svg>\n);\n"],"names":[],"mappings":";AAEa,MAAA,QAAqC,CAAC,UACjD;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,OAAM;AAAA,IACN,SAAQ;AAAA,IACR,OAAM;AAAA,IACN,QAAO;AAAA,IACP,MAAK;AAAA,IACJ,GAAG;AAAA,IAEJ,UAAA,oBAAC,QAAK,EAAA,GAAE,yHAAyH,CAAA;AAAA,EAAA;AACnI;"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const YoutubeLogo = (props) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
5
|
+
"svg",
|
|
6
|
+
{
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
width: "800px",
|
|
9
|
+
height: "800px",
|
|
10
|
+
viewBox: "0 0 32 32",
|
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12.932 20.459v-8.917l7.839 4.459zM30.368 8.735c-0.354-1.301-1.354-2.307-2.625-2.663l-0.027-0.006c-3.193-0.406-6.886-0.638-10.634-0.638-0.381 0-0.761 0.002-1.14 0.007l0.058-0.001c-0.322-0.004-0.701-0.007-1.082-0.007-3.748 0-7.443 0.232-11.070 0.681l0.434-0.044c-1.297 0.363-2.297 1.368-2.644 2.643l-0.006 0.026c-0.4 2.109-0.628 4.536-0.628 7.016 0 0.088 0 0.176 0.001 0.263l-0-0.014c-0 0.074-0.001 0.162-0.001 0.25 0 2.48 0.229 4.906 0.666 7.259l-0.038-0.244c0.354 1.301 1.354 2.307 2.625 2.663l0.027 0.006c3.193 0.406 6.886 0.638 10.634 0.638 0.38 0 0.76-0.002 1.14-0.007l-0.058 0.001c0.322 0.004 0.702 0.007 1.082 0.007 3.749 0 7.443-0.232 11.070-0.681l-0.434 0.044c1.298-0.362 2.298-1.368 2.646-2.643l0.006-0.026c0.399-2.109 0.627-4.536 0.627-7.015 0-0.088-0-0.176-0.001-0.263l0 0.013c0-0.074 0.001-0.162 0.001-0.25 0-2.48-0.229-4.906-0.666-7.259l0.038 0.244z" })
|
|
14
|
+
}
|
|
15
|
+
);
|
|
16
|
+
exports.YoutubeLogo = YoutubeLogo;
|
|
17
|
+
//# sourceMappingURL=YoutubeLogo.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YoutubeLogo.cjs","sources":["../../../src/components/SocialNetworks/YoutubeLogo.tsx"],"sourcesContent":["import type { FC, SVGProps } from 'react';\n\nexport const YoutubeLogo: FC<SVGProps<SVGSVGElement>> = (props) => (\n <svg\n fill=\"currentColor\"\n width=\"800px\"\n height=\"800px\"\n viewBox=\"0 0 32 32\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path d=\"M12.932 20.459v-8.917l7.839 4.459zM30.368 8.735c-0.354-1.301-1.354-2.307-2.625-2.663l-0.027-0.006c-3.193-0.406-6.886-0.638-10.634-0.638-0.381 0-0.761 0.002-1.14 0.007l0.058-0.001c-0.322-0.004-0.701-0.007-1.082-0.007-3.748 0-7.443 0.232-11.070 0.681l0.434-0.044c-1.297 0.363-2.297 1.368-2.644 2.643l-0.006 0.026c-0.4 2.109-0.628 4.536-0.628 7.016 0 0.088 0 0.176 0.001 0.263l-0-0.014c-0 0.074-0.001 0.162-0.001 0.25 0 2.48 0.229 4.906 0.666 7.259l-0.038-0.244c0.354 1.301 1.354 2.307 2.625 2.663l0.027 0.006c3.193 0.406 6.886 0.638 10.634 0.638 0.38 0 0.76-0.002 1.14-0.007l-0.058 0.001c0.322 0.004 0.702 0.007 1.082 0.007 3.749 0 7.443-0.232 11.070-0.681l-0.434 0.044c1.298-0.362 2.298-1.368 2.646-2.643l0.006-0.026c0.399-2.109 0.627-4.536 0.627-7.015 0-0.088-0-0.176-0.001-0.263l0 0.013c0-0.074 0.001-0.162 0.001-0.25 0-2.48-0.229-4.906-0.666-7.259l0.038 0.244z\"></path>\n </svg>\n);\n"],"names":["jsx"],"mappings":";;;AAEa,MAAA,cAA2C,CAAC,UACvDA,2BAAA;AAAA,EAAC;AAAA,EAAA;AAAA,IACC,MAAK;AAAA,IACL,OAAM;AAAA,IACN,QAAO;AAAA,IACP,SAAQ;AAAA,IACR,OAAM;AAAA,IACL,GAAG;AAAA,IAEJ,UAAAA,2BAAAA,IAAC,QAAK,EAAA,GAAE,i2BAAi2B,CAAA;AAAA,EAAA;AAC32B;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YoutubeLogo.d.ts","sourceRoot":"","sources":["../../../src/components/SocialNetworks/YoutubeLogo.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AAE1C,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAWnD,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
const YoutubeLogo = (props) => /* @__PURE__ */ jsx(
|
|
3
|
+
"svg",
|
|
4
|
+
{
|
|
5
|
+
fill: "currentColor",
|
|
6
|
+
width: "800px",
|
|
7
|
+
height: "800px",
|
|
8
|
+
viewBox: "0 0 32 32",
|
|
9
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
10
|
+
...props,
|
|
11
|
+
children: /* @__PURE__ */ jsx("path", { d: "M12.932 20.459v-8.917l7.839 4.459zM30.368 8.735c-0.354-1.301-1.354-2.307-2.625-2.663l-0.027-0.006c-3.193-0.406-6.886-0.638-10.634-0.638-0.381 0-0.761 0.002-1.14 0.007l0.058-0.001c-0.322-0.004-0.701-0.007-1.082-0.007-3.748 0-7.443 0.232-11.070 0.681l0.434-0.044c-1.297 0.363-2.297 1.368-2.644 2.643l-0.006 0.026c-0.4 2.109-0.628 4.536-0.628 7.016 0 0.088 0 0.176 0.001 0.263l-0-0.014c-0 0.074-0.001 0.162-0.001 0.25 0 2.48 0.229 4.906 0.666 7.259l-0.038-0.244c0.354 1.301 1.354 2.307 2.625 2.663l0.027 0.006c3.193 0.406 6.886 0.638 10.634 0.638 0.38 0 0.76-0.002 1.14-0.007l-0.058 0.001c0.322 0.004 0.702 0.007 1.082 0.007 3.749 0 7.443-0.232 11.070-0.681l-0.434 0.044c1.298-0.362 2.298-1.368 2.646-2.643l0.006-0.026c0.399-2.109 0.627-4.536 0.627-7.015 0-0.088-0-0.176-0.001-0.263l0 0.013c0-0.074 0.001-0.162 0.001-0.25 0-2.48-0.229-4.906-0.666-7.259l0.038 0.244z" })
|
|
12
|
+
}
|
|
13
|
+
);
|
|
14
|
+
export {
|
|
15
|
+
YoutubeLogo
|
|
16
|
+
};
|
|
17
|
+
//# sourceMappingURL=YoutubeLogo.mjs.map
|