@better-auth-ui/react 1.6.8 → 1.6.10
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/components/auth/auth-context.d.ts +3 -0
- package/dist/components/auth/email/email-localization.d.ts +11 -3
- package/dist/components/auth/email/index.d.ts +1 -0
- package/dist/components/auth/email/organization-invitation.d.ts +121 -0
- package/dist/components/mutation-invalidator.d.ts +1 -0
- package/dist/email.js +1348 -11
- package/dist/hooks/auth/use-authenticate.d.ts +1 -1
- package/dist/hooks/auth/use-user.d.ts +12 -12
- package/dist/hooks/use-auth-query.d.ts +1 -1
- package/dist/index.d.ts +3 -0
- package/dist/index.js +2469 -79
- package/dist/lib/auth-client.d.ts +4 -1
- package/dist/lib/auth-plugin.d.ts +16 -0
- package/dist/lib/auth-server.d.ts +8 -1
- package/dist/lib/settings-tab.d.ts +19 -0
- package/dist/mutations/api-key/create-api-key-mutation.d.ts +6 -4
- package/dist/mutations/api-key/delete-api-key-mutation.d.ts +7 -3
- package/dist/mutations/auth/sign-in-email-mutation.d.ts +5 -5
- package/dist/mutations/auth/sign-out-mutation.d.ts +6 -4
- package/dist/mutations/auth/sign-up-email-mutation.d.ts +5 -5
- package/dist/mutations/multi-session/revoke-multi-session-mutation.d.ts +5 -5
- package/dist/mutations/multi-session/set-active-session-mutation.d.ts +5 -6
- package/dist/mutations/organization/accept-invitation-mutation.d.ts +43 -0
- package/dist/mutations/organization/cancel-invitation-mutation.d.ts +25 -0
- package/dist/mutations/organization/check-slug-mutation.d.ts +21 -0
- package/dist/mutations/organization/create-organization-mutation.d.ts +39 -0
- package/dist/mutations/organization/delete-organization-mutation.d.ts +21 -0
- package/dist/mutations/organization/index.d.ts +12 -0
- package/dist/mutations/organization/invite-member-mutation.d.ts +43 -0
- package/dist/mutations/organization/leave-organization-mutation.d.ts +65 -0
- package/dist/mutations/organization/reject-invitation-mutation.d.ts +31 -0
- package/dist/mutations/organization/remove-member-mutation.d.ts +35 -0
- package/dist/mutations/organization/set-active-organization-mutation.d.ts +71 -0
- package/dist/mutations/organization/update-member-role-mutation.d.ts +31 -0
- package/dist/mutations/organization/update-organization-mutation.d.ts +21 -0
- package/dist/mutations/passkey/add-passkey-mutation.d.ts +5 -5
- package/dist/mutations/passkey/delete-passkey-mutation.d.ts +5 -5
- package/dist/mutations/passkey/sign-in-passkey-mutation.d.ts +5 -5
- package/dist/mutations/settings/change-email-mutation.d.ts +6 -5
- package/dist/mutations/settings/revoke-session-mutation.d.ts +5 -5
- package/dist/mutations/settings/unlink-account-mutation.d.ts +5 -5
- package/dist/mutations/settings/update-user-mutation.d.ts +5 -5
- package/dist/mutations/username/sign-in-username-mutation.d.ts +5 -5
- package/dist/plugins/captcha-plugin.d.ts +2 -2
- package/dist/plugins.js +27 -2
- package/dist/queries/api-key/list-api-keys-query.d.ts +17 -8
- package/dist/queries/auth/session-query.d.ts +1 -1
- package/dist/queries/multi-session/list-device-sessions-query.d.ts +5 -5
- package/dist/queries/organization/active-organization-query.d.ts +39 -0
- package/dist/queries/organization/full-organization-query.d.ts +37 -0
- package/dist/queries/organization/has-permission-query.d.ts +21 -0
- package/dist/queries/organization/index.d.ts +7 -0
- package/dist/queries/organization/list-invitations-query.d.ts +29 -0
- package/dist/queries/organization/list-members-query.d.ts +61 -0
- package/dist/queries/organization/list-organizations-query.d.ts +22 -0
- package/dist/queries/organization/list-user-invitations-query.d.ts +29 -0
- package/dist/queries/passkey/list-passkeys-query.d.ts +5 -5
- package/dist/queries/settings/account-info-query.d.ts +1 -1
- package/dist/queries/settings/list-accounts-query.d.ts +1 -1
- package/dist/queries/settings/list-sessions-query.d.ts +1 -1
- package/dist/server/queries/api-key/list-api-keys-query.d.ts +83 -0
- package/dist/server/queries/multi-session/list-device-sessions-query.d.ts +4 -4
- package/dist/server/queries/organization/active-organization-query.d.ts +61 -0
- package/dist/server/queries/organization/full-organization-query.d.ts +42 -0
- package/dist/server/queries/organization/has-permission-query.d.ts +66 -0
- package/dist/server/queries/organization/list-invitations-query.d.ts +34 -0
- package/dist/server/queries/organization/list-members-query.d.ts +66 -0
- package/dist/server/queries/organization/list-organizations-query.d.ts +27 -0
- package/dist/server/queries/organization/list-user-invitations-query.d.ts +34 -0
- package/dist/server/queries/passkey/list-passkeys-query.d.ts +4 -4
- package/dist/server.d.ts +8 -0
- package/dist/server.js +131 -7
- package/dist/use-auth-plugin-ClcP84Uz.js +80 -0
- package/package.json +19 -16
- package/src/components/auth/auth-context.tsx +7 -0
- package/src/components/auth/auth-provider.tsx +19 -31
- package/src/components/auth/email/email-localization.tsx +5 -3
- package/src/components/auth/email/index.ts +1 -0
- package/src/components/auth/email/organization-invitation.tsx +454 -0
- package/src/components/mutation-invalidator.tsx +67 -0
- package/src/index.ts +3 -0
- package/src/lib/auth-client.ts +7 -0
- package/src/lib/auth-plugin.ts +17 -0
- package/src/lib/auth-server.ts +17 -1
- package/src/lib/settings-tab.ts +21 -0
- package/src/mutations/api-key/create-api-key-mutation.ts +34 -19
- package/src/mutations/api-key/delete-api-key-mutation.ts +36 -19
- package/src/mutations/auth/sign-in-email-mutation.ts +18 -22
- package/src/mutations/auth/sign-out-mutation.ts +19 -13
- package/src/mutations/auth/sign-up-email-mutation.ts +18 -22
- package/src/mutations/multi-session/revoke-multi-session-mutation.ts +31 -20
- package/src/mutations/multi-session/set-active-session-mutation.ts +25 -44
- package/src/mutations/organization/accept-invitation-mutation.ts +71 -0
- package/src/mutations/organization/cancel-invitation-mutation.ts +67 -0
- package/src/mutations/organization/check-slug-mutation.ts +55 -0
- package/src/mutations/organization/create-organization-mutation.ts +71 -0
- package/src/mutations/organization/delete-organization-mutation.ts +71 -0
- package/src/mutations/organization/index.ts +12 -0
- package/src/mutations/organization/invite-member-mutation.ts +81 -0
- package/src/mutations/organization/leave-organization-mutation.ts +74 -0
- package/src/mutations/organization/reject-invitation-mutation.ts +64 -0
- package/src/mutations/organization/remove-member-mutation.ts +67 -0
- package/src/mutations/organization/set-active-organization-mutation.ts +142 -0
- package/src/mutations/organization/update-member-role-mutation.ts +81 -0
- package/src/mutations/organization/update-organization-mutation.ts +84 -0
- package/src/mutations/passkey/add-passkey-mutation.ts +28 -17
- package/src/mutations/passkey/delete-passkey-mutation.ts +27 -17
- package/src/mutations/passkey/sign-in-passkey-mutation.ts +18 -21
- package/src/mutations/settings/change-email-mutation.ts +22 -18
- package/src/mutations/settings/delete-user-mutation.ts +2 -2
- package/src/mutations/settings/revoke-session-mutation.ts +24 -19
- package/src/mutations/settings/unlink-account-mutation.ts +24 -17
- package/src/mutations/settings/update-user-mutation.ts +18 -30
- package/src/mutations/username/is-username-available-mutation.ts +2 -2
- package/src/mutations/username/sign-in-username-mutation.ts +20 -23
- package/src/queries/api-key/list-api-keys-query.ts +20 -8
- package/src/queries/multi-session/list-device-sessions-query.ts +2 -2
- package/src/queries/organization/active-organization-query.ts +140 -0
- package/src/queries/organization/full-organization-query.ts +113 -0
- package/src/queries/organization/has-permission-query.ts +124 -0
- package/src/queries/organization/index.ts +7 -0
- package/src/queries/organization/list-invitations-query.ts +133 -0
- package/src/queries/organization/list-members-query.ts +133 -0
- package/src/queries/organization/list-organizations-query.ts +122 -0
- package/src/queries/organization/list-user-invitations-query.ts +122 -0
- package/src/queries/passkey/list-passkeys-query.ts +2 -2
- package/src/server/queries/api-key/list-api-keys-query.ts +94 -0
- package/src/server/queries/multi-session/list-device-sessions-query.ts +2 -2
- package/src/server/queries/organization/active-organization-query.ts +92 -0
- package/src/server/queries/organization/full-organization-query.ts +64 -0
- package/src/server/queries/organization/has-permission-query.ts +66 -0
- package/src/server/queries/organization/list-invitations-query.ts +81 -0
- package/src/server/queries/organization/list-members-query.ts +75 -0
- package/src/server/queries/organization/list-organizations-query.ts +67 -0
- package/src/server/queries/organization/list-user-invitations-query.ts +68 -0
- package/src/server/queries/passkey/list-passkeys-query.ts +2 -2
- package/src/server.ts +8 -0
- package/dist/components/auth/auth-provider.js +0 -44
- package/dist/components/auth/email/email-changed.js +0 -156
- package/dist/components/auth/email/email-localization.js +0 -19
- package/dist/components/auth/email/email-styles.js +0 -104
- package/dist/components/auth/email/email-verification.js +0 -140
- package/dist/components/auth/email/index.js +0 -9
- package/dist/components/auth/email/magic-link.js +0 -141
- package/dist/components/auth/email/new-device.js +0 -223
- package/dist/components/auth/email/otp-email.js +0 -129
- package/dist/components/auth/email/password-changed.js +0 -159
- package/dist/components/auth/email/reset-password.js +0 -140
- package/dist/components/auth/fetch-options-provider.js +0 -30
- package/dist/components/icons/apple.js +0 -17
- package/dist/components/icons/atlassian.js +0 -39
- package/dist/components/icons/cognito.js +0 -20
- package/dist/components/icons/discord.js +0 -17
- package/dist/components/icons/dropbox.js +0 -17
- package/dist/components/icons/facebook.js +0 -20
- package/dist/components/icons/figma.js +0 -35
- package/dist/components/icons/github.js +0 -17
- package/dist/components/icons/gitlab.js +0 -31
- package/dist/components/icons/google.js +0 -40
- package/dist/components/icons/huggingface.js +0 -39
- package/dist/components/icons/index.js +0 -35
- package/dist/components/icons/kakao.js +0 -17
- package/dist/components/icons/kick.js +0 -21
- package/dist/components/icons/line.js +0 -17
- package/dist/components/icons/linear.js +0 -17
- package/dist/components/icons/linkedin.js +0 -34
- package/dist/components/icons/microsoft.js +0 -31
- package/dist/components/icons/naver.js +0 -17
- package/dist/components/icons/notion.js +0 -17
- package/dist/components/icons/paybin.js +0 -33
- package/dist/components/icons/paypal.js +0 -31
- package/dist/components/icons/polar.js +0 -25
- package/dist/components/icons/railway.js +0 -17
- package/dist/components/icons/reddit.js +0 -22
- package/dist/components/icons/roblox.js +0 -18
- package/dist/components/icons/salesforce.js +0 -17
- package/dist/components/icons/slack.js +0 -31
- package/dist/components/icons/spotify.js +0 -17
- package/dist/components/icons/tiktok.js +0 -24
- package/dist/components/icons/twitch.js +0 -44
- package/dist/components/icons/vercel.js +0 -17
- package/dist/components/icons/vk.js +0 -17
- package/dist/components/icons/wechat.js +0 -17
- package/dist/components/icons/x.js +0 -17
- package/dist/components/icons/zoom.js +0 -70
- package/dist/components/settings/account/theme-preview.js +0 -289
- package/dist/hooks/auth/use-authenticate.js +0 -23
- package/dist/hooks/auth/use-user.js +0 -11
- package/dist/hooks/use-auth-mutation.js +0 -11
- package/dist/hooks/use-auth-plugin.js +0 -10
- package/dist/hooks/use-auth-query.js +0 -15
- package/dist/lib/provider-icons.js +0 -76
- package/dist/lib/utils.js +0 -8
- package/dist/mutations/api-key/create-api-key-mutation.js +0 -29
- package/dist/mutations/api-key/delete-api-key-mutation.js +0 -29
- package/dist/mutations/auth/request-password-reset-mutation.js +0 -24
- package/dist/mutations/auth/reset-password-mutation.js +0 -24
- package/dist/mutations/auth/send-verification-email-mutation.js +0 -24
- package/dist/mutations/auth/sign-in-email-mutation.js +0 -29
- package/dist/mutations/auth/sign-in-social-mutation.js +0 -24
- package/dist/mutations/auth/sign-out-mutation.js +0 -28
- package/dist/mutations/auth/sign-up-email-mutation.js +0 -29
- package/dist/mutations/auth-mutation-options.js +0 -19
- package/dist/mutations/magic-link/sign-in-magic-link-mutation.js +0 -24
- package/dist/mutations/multi-session/revoke-multi-session-mutation.js +0 -29
- package/dist/mutations/multi-session/set-active-session-mutation.js +0 -31
- package/dist/mutations/passkey/add-passkey-mutation.js +0 -29
- package/dist/mutations/passkey/delete-passkey-mutation.js +0 -29
- package/dist/mutations/passkey/sign-in-passkey-mutation.js +0 -29
- package/dist/mutations/settings/change-email-mutation.js +0 -29
- package/dist/mutations/settings/change-password-mutation.js +0 -24
- package/dist/mutations/settings/delete-user-mutation.js +0 -24
- package/dist/mutations/settings/link-social-mutation.js +0 -24
- package/dist/mutations/settings/revoke-session-mutation.js +0 -29
- package/dist/mutations/settings/unlink-account-mutation.js +0 -29
- package/dist/mutations/settings/update-user-mutation.js +0 -35
- package/dist/mutations/username/is-username-available-mutation.js +0 -24
- package/dist/mutations/username/sign-in-username-mutation.js +0 -29
- package/dist/plugins/captcha-plugin.js +0 -29
- package/dist/queries/api-key/list-api-keys-query.js +0 -31
- package/dist/queries/auth/session-query.js +0 -30
- package/dist/queries/auth-query-options.js +0 -17
- package/dist/queries/multi-session/list-device-sessions-query.js +0 -31
- package/dist/queries/passkey/list-passkeys-query.js +0 -31
- package/dist/queries/settings/account-info-query.js +0 -31
- package/dist/queries/settings/list-accounts-query.js +0 -31
- package/dist/queries/settings/list-sessions-query.js +0 -31
- package/dist/server/queries/auth/session-query.js +0 -13
- package/dist/server/queries/multi-session/list-device-sessions-query.js +0 -12
- package/dist/server/queries/passkey/list-passkeys-query.js +0 -12
- package/dist/server/queries/settings/account-info-query.js +0 -12
- package/dist/server/queries/settings/list-accounts-query.js +0 -12
- package/dist/server/queries/settings/list-sessions-query.js +0 -12
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/apple.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Apple",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04c-2.04.027-3.91 1.183-4.961 3.014c-2.117 3.675-.546 9.103 1.519 12.09c1.013 1.454 2.208 3.09 3.792 3.039c1.52-.065 2.09-.987 3.935-.987c1.831 0 2.35.987 3.96.948c1.637-.026 2.676-1.48 3.676-2.948c1.156-1.688 1.636-3.325 1.662-3.415c-.039-.013-3.182-1.221-3.22-4.857c-.026-3.04 2.48-4.494 2.597-4.559c-1.429-2.09-3.623-2.324-4.39-2.376c-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83c-1.207.052-2.662.805-3.532 1.818c-.78.896-1.454 2.338-1.273 3.714c1.338.104 2.715-.688 3.559-1.701"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Apple };
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { useId as e } from "react";
|
|
2
|
-
import { jsx as t, jsxs as n } from "react/jsx-runtime";
|
|
3
|
-
//#region src/components/icons/atlassian.tsx
|
|
4
|
-
function r(r) {
|
|
5
|
-
let i = e();
|
|
6
|
-
return /* @__PURE__ */ n("svg", {
|
|
7
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8
|
-
viewBox: "0 0 256 256",
|
|
9
|
-
role: "img",
|
|
10
|
-
"aria-label": "Atlassian",
|
|
11
|
-
...r,
|
|
12
|
-
children: [
|
|
13
|
-
/* @__PURE__ */ t("defs", { children: /* @__PURE__ */ n("linearGradient", {
|
|
14
|
-
id: i,
|
|
15
|
-
x1: "99.687%",
|
|
16
|
-
x2: "39.836%",
|
|
17
|
-
y1: "15.801%",
|
|
18
|
-
y2: "97.438%",
|
|
19
|
-
children: [/* @__PURE__ */ t("stop", {
|
|
20
|
-
offset: "0%",
|
|
21
|
-
stopColor: "#0052cc"
|
|
22
|
-
}), /* @__PURE__ */ t("stop", {
|
|
23
|
-
offset: "92.3%",
|
|
24
|
-
stopColor: "#2684ff"
|
|
25
|
-
})]
|
|
26
|
-
}) }),
|
|
27
|
-
/* @__PURE__ */ t("path", {
|
|
28
|
-
fill: `url(#${i})`,
|
|
29
|
-
d: "M75.793 117.95c-3.82-4.08-9.77-3.85-12.367 1.342L.791 244.565a7.488 7.488 0 0 0 6.697 10.838h87.228a7.22 7.22 0 0 0 6.699-4.14c18.808-38.89 7.413-98.018-25.622-133.314"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ t("path", {
|
|
32
|
-
fill: "#2681ff",
|
|
33
|
-
d: "M121.756 4.011c-35.033 55.505-32.721 116.979-9.646 163.13l42.06 84.121a7.49 7.49 0 0 0 6.697 4.14h87.227a7.488 7.488 0 0 0 6.697-10.838S137.445 9.837 134.493 3.964c-2.64-5.258-9.344-5.33-12.737.047"
|
|
34
|
-
})
|
|
35
|
-
]
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
//#endregion
|
|
39
|
-
export { r as Atlassian };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/cognito.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 48 48",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Cognito",
|
|
9
|
-
...n,
|
|
10
|
-
children: [/* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M24 4L6 14v20l18 10 18-10V14L24 4zm0 4.62l13.6 7.86v15.04L24 39.38 10.4 31.52V16.48L24 8.62z"
|
|
13
|
-
}), /* @__PURE__ */ e("path", {
|
|
14
|
-
fill: "currentColor",
|
|
15
|
-
d: "M22 14h4v20h-4zM14 22h20v4H14z"
|
|
16
|
-
})]
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
//#endregion
|
|
20
|
-
export { n as Cognito };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/discord.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 199",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Discord",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "#5865f2",
|
|
12
|
-
d: "M216.856 16.597A208.5 208.5 0 0 0 164.042 0c-2.275 4.113-4.933 9.645-6.766 14.046q-29.538-4.442-58.533 0c-1.832-4.4-4.55-9.933-6.846-14.046a207.8 207.8 0 0 0-52.855 16.638C5.618 67.147-3.443 116.4 1.087 164.956c22.169 16.555 43.653 26.612 64.775 33.193A161 161 0 0 0 79.735 175.3a136.4 136.4 0 0 1-21.846-10.632a109 109 0 0 0 5.356-4.237c42.122 19.702 87.89 19.702 129.51 0a132 132 0 0 0 5.355 4.237a136 136 0 0 1-21.886 10.653c4.006 8.02 8.638 15.67 13.873 22.848c21.142-6.58 42.646-16.637 64.815-33.213c5.316-56.288-9.08-105.09-38.056-148.36M85.474 135.095c-12.645 0-23.015-11.805-23.015-26.18s10.149-26.2 23.015-26.2s23.236 11.804 23.015 26.2c.02 14.375-10.148 26.18-23.015 26.18m85.051 0c-12.645 0-23.014-11.805-23.014-26.18s10.148-26.2 23.014-26.2c12.867 0 23.236 11.804 23.015 26.2c0 14.375-10.148 26.18-23.015 26.18"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Discord };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/dropbox.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 218",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Dropbox",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "#0061ff",
|
|
12
|
-
d: "M63.995 0L0 40.771l63.995 40.772L128 40.771zM192 0l-64 40.775l64 40.775l64.001-40.775zM0 122.321l63.995 40.772L128 122.321L63.995 81.55zM192 81.55l-64 40.775l64 40.774l64-40.774zM64 176.771l64.005 40.772L192 176.771L128.005 136z"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Dropbox };
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/facebook.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 256",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Facebook",
|
|
9
|
-
...n,
|
|
10
|
-
children: [/* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "#1877f2",
|
|
12
|
-
d: "M256 128C256 57.308 198.692 0 128 0S0 57.308 0 128c0 63.888 46.808 116.843 108 126.445V165H75.5v-37H108V99.8c0-32.08 19.11-49.8 48.348-49.8C170.352 50 185 52.5 185 52.5V84h-16.14C152.959 84 148 93.867 148 103.99V128h35.5l-5.675 37H148v89.445c61.192-9.602 108-62.556 108-126.445"
|
|
13
|
-
}), /* @__PURE__ */ e("path", {
|
|
14
|
-
fill: "#fff",
|
|
15
|
-
d: "m177.825 165l5.675-37H148v-24.01C148 93.866 152.959 84 168.86 84H185V52.5S170.352 50 156.347 50C127.11 50 108 67.72 108 99.8V128H75.5v37H108v89.445A129 129 0 0 0 128 256a129 129 0 0 0 20-1.555V165z"
|
|
16
|
-
})]
|
|
17
|
-
});
|
|
18
|
-
}
|
|
19
|
-
//#endregion
|
|
20
|
-
export { n as Facebook };
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/figma.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 128 128",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Figma",
|
|
9
|
-
...n,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ e("path", {
|
|
12
|
-
fill: "#0acf83",
|
|
13
|
-
d: "M45.5 129c11.9 0 21.5-9.6 21.5-21.5V86H45.5C33.6 86 24 95.6 24 107.5S33.6 129 45.5 129m0 0"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ e("path", {
|
|
16
|
-
fill: "#a259ff",
|
|
17
|
-
d: "M24 64.5C24 52.6 33.6 43 45.5 43H67v43H45.5C33.6 86 24 76.4 24 64.5m0 0"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ e("path", {
|
|
20
|
-
fill: "#f24e1e",
|
|
21
|
-
d: "M24 21.5C24 9.6 33.6 0 45.5 0H67v43H45.5C33.6 43 24 33.4 24 21.5m0 0"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ e("path", {
|
|
24
|
-
fill: "#ff7262",
|
|
25
|
-
d: "M67 0h21.5C100.4 0 110 9.6 110 21.5S100.4 43 88.5 43H67zm0 0"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ e("path", {
|
|
28
|
-
fill: "#1abcfe",
|
|
29
|
-
d: "M110 64.5c0 11.9-9.6 21.5-21.5 21.5S67 76.4 67 64.5S76.6 43 88.5 43S110 52.6 110 64.5m0 0"
|
|
30
|
-
})
|
|
31
|
-
]
|
|
32
|
-
});
|
|
33
|
-
}
|
|
34
|
-
//#endregion
|
|
35
|
-
export { n as Figma };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/github.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "GitHub",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M12 .297c-6.63 0-12 5.373-12 12c0 5.303 3.438 9.8 8.205 11.385c.6.113.82-.258.82-.577c0-.285-.01-1.04-.015-2.04c-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729c1.205.084 1.838 1.236 1.838 1.236c1.07 1.835 2.809 1.305 3.495.998c.108-.776.417-1.305.76-1.605c-2.665-.3-5.466-1.332-5.466-5.93c0-1.31.465-2.38 1.235-3.22c-.135-.303-.54-1.523.105-3.176c0 0 1.005-.322 3.3 1.23c.96-.267 1.98-.399 3-.405c1.02.006 2.04.138 3 .405c2.28-1.552 3.285-1.23 3.285-1.23c.645 1.653.24 2.873.12 3.176c.765.84 1.23 1.91 1.23 3.22c0 4.61-2.805 5.625-5.475 5.92c.42.36.81 1.096.81 2.22c0 1.606-.015 2.896-.015 3.286c0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as GitHub };
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/gitlab.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 128 128",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "GitLab",
|
|
9
|
-
...n,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ e("path", {
|
|
12
|
-
fill: "#e24329",
|
|
13
|
-
d: "m124.755 51.382l-.177-.452L107.47 6.282a4.46 4.46 0 0 0-1.761-2.121a4.58 4.58 0 0 0-5.236.281a4.6 4.6 0 0 0-1.518 2.304L87.404 42.088H40.629L29.077 6.746a4.5 4.5 0 0 0-1.518-2.31a4.58 4.58 0 0 0-5.236-.281a4.5 4.5 0 0 0-1.761 2.121L3.422 50.904l-.17.452c-5.059 13.219-.763 28.192 10.537 36.716l.059.046l.157.111l26.061 19.516l12.893 9.758l7.854 5.93a5.28 5.28 0 0 0 6.388 0l7.854-5.93l12.893-9.758l26.218-19.634l.065-.052c11.273-8.526 15.562-23.472 10.524-36.677"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ e("path", {
|
|
16
|
-
fill: "#fc6d26",
|
|
17
|
-
d: "m124.755 51.382l-.177-.452a57.8 57.8 0 0 0-23.005 10.341L64 89.682c12.795 9.68 23.934 18.09 23.934 18.09l26.218-19.634l.065-.052c11.291-8.527 15.586-23.488 10.538-36.704"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ e("path", {
|
|
20
|
-
fill: "#fca326",
|
|
21
|
-
d: "m40.066 107.771l12.893 9.758l7.854 5.93a5.28 5.28 0 0 0 6.388 0l7.854-5.93l12.893-9.758s-11.152-8.436-23.947-18.09a18379 18379 0 0 0-23.935 18.09"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ e("path", {
|
|
24
|
-
fill: "#fc6d26",
|
|
25
|
-
d: "M26.42 61.271A57.7 57.7 0 0 0 3.422 50.904l-.17.452c-5.059 13.219-.763 28.192 10.537 36.716l.059.046l.157.111l26.061 19.516L64 89.655z"
|
|
26
|
-
})
|
|
27
|
-
]
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
//#endregion
|
|
31
|
-
export { n as GitLab };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/google.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 16 16",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Google",
|
|
9
|
-
...n,
|
|
10
|
-
children: /* @__PURE__ */ t("g", {
|
|
11
|
-
fill: "none",
|
|
12
|
-
fillRule: "evenodd",
|
|
13
|
-
clipRule: "evenodd",
|
|
14
|
-
children: [
|
|
15
|
-
/* @__PURE__ */ e("path", {
|
|
16
|
-
fill: "#f44336",
|
|
17
|
-
d: "M7.209 1.061c.725-.081 1.154-.081 1.933 0a6.57 6.57 0 0 1 3.65 1.82a100 100 0 0 0-1.986 1.93q-1.876-1.59-4.188-.734q-1.696.78-2.362 2.528a78 78 0 0 1-2.148-1.658a.26.26 0 0 0-.16-.027q1.683-3.245 5.26-3.86",
|
|
18
|
-
opacity: .987
|
|
19
|
-
}),
|
|
20
|
-
/* @__PURE__ */ e("path", {
|
|
21
|
-
fill: "#ffc107",
|
|
22
|
-
d: "M1.946 4.92q.085-.013.161.027a78 78 0 0 0 2.148 1.658A7.6 7.6 0 0 0 4.04 7.99q.037.678.215 1.331L2 11.116Q.527 8.038 1.946 4.92",
|
|
23
|
-
opacity: .997
|
|
24
|
-
}),
|
|
25
|
-
/* @__PURE__ */ e("path", {
|
|
26
|
-
fill: "#448aff",
|
|
27
|
-
d: "M12.685 13.29a26 26 0 0 0-2.202-1.74q1.15-.812 1.396-2.228H8.122V6.713q3.25-.027 6.497.055q.616 3.345-1.423 6.032a7 7 0 0 1-.51.49",
|
|
28
|
-
opacity: .999
|
|
29
|
-
}),
|
|
30
|
-
/* @__PURE__ */ e("path", {
|
|
31
|
-
fill: "#43a047",
|
|
32
|
-
d: "M4.255 9.322q1.23 3.057 4.51 2.854a3.94 3.94 0 0 0 1.718-.626q1.148.812 2.202 1.74a6.62 6.62 0 0 1-4.027 1.684a6.4 6.4 0 0 1-1.02 0Q3.82 14.524 2 11.116z",
|
|
33
|
-
opacity: .993
|
|
34
|
-
})
|
|
35
|
-
]
|
|
36
|
-
})
|
|
37
|
-
});
|
|
38
|
-
}
|
|
39
|
-
//#endregion
|
|
40
|
-
export { n as Google };
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/huggingface.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 238",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Hugging Face",
|
|
9
|
-
...n,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ e("path", {
|
|
12
|
-
fill: "#fff",
|
|
13
|
-
d: "M255.138 174.711a23.6 23.6 0 0 0-3.2-7.075q.468-1.713.707-3.47c1.029-7.428-1.545-14.232-6.4-19.49c-2.629-2.874-5.446-4.771-8.431-5.936a112.6 112.6 0 0 0 2.956-25.57c0-3.93-.223-7.78-.595-11.574a136 136 0 0 0-.705-5.67a113 113 0 0 0-3.794-16.42a114 114 0 0 0-3.795-10.41a114 114 0 0 0-7.51-14.605a102 102 0 0 0-6.1-9.026a86 86 0 0 0-3.361-4.283a112 112 0 0 0-11.229-11.793a86 86 0 0 0-4.119-3.556a102 102 0 0 0-4.256-3.363a120 120 0 0 0-9.028-6.1C169.148 5.968 149.06 0 127.582 0C65.069 0 14.403 50.666 14.403 113.178a112.6 112.6 0 0 0 3.01 25.88c-2.685 1.166-5.26 2.982-7.645 5.611c-4.853 5.26-7.428 12.037-6.398 19.466c.155 1.181.392 2.35.705 3.498a23.6 23.6 0 0 0-3.2 7.078c-1.491 5.67-1 10.782.895 15.265c-2.06 5.856-1.545 12.09 1.139 17.514c1.951 3.959 4.745 7.02 8.187 9.759c4.093 3.253 9.217 6.019 15.4 8.67c7.374 3.145 16.372 6.1 20.461 7.184c10.573 2.738 20.71 4.473 30.989 4.557c14.643.136 27.247-3.307 36.272-12.116c4.434.543 8.896.815 13.362.814c4.72-.01 9.435-.308 14.121-.89c9.005 8.865 21.654 12.34 36.347 12.2c10.273-.082 20.41-1.817 30.951-4.56c4.12-1.083 13.114-4.038 20.498-7.181c6.181-2.658 11.304-5.422 15.426-8.672c3.416-2.737 6.206-5.8 8.16-9.759c2.71-5.42 3.199-11.656 1.165-17.514c1.878-4.479 2.366-9.603.875-15.265zm-10.49 14.88c2.077 3.94 2.21 8.395.377 12.541c-2.78 6.288-9.683 11.239-23.096 16.558c-8.337 3.307-15.973 5.42-16.035 5.44c-11.028 2.86-21.007 4.313-29.634 4.313c-14.295 0-24.935-3.945-31.685-11.736a106.3 106.3 0 0 1-34.494.195c-6.755 7.662-17.328 11.54-31.511 11.54c-8.635 0-18.608-1.451-29.634-4.312c-.068-.02-7.7-2.133-16.035-5.44c-13.412-5.317-20.311-10.265-23.096-16.558c-1.833-4.148-1.7-8.601.377-12.542q.289-.549.618-1.068a15.9 15.9 0 0 1-2.148-12.855c.825-3.135 2.53-5.743 4.845-7.616a15.9 15.9 0 0 1-2.15-5.994c-.666-4.617.865-9.227 4.313-12.99c2.684-2.925 6.479-4.534 10.682-4.534h.111a105 105 0 0 1-4.764-31.375C21.689 55.146 68.725 8.11 126.738 8.11c58.025 0 105.049 47.036 105.049 105.048a105 105 0 0 1-4.797 31.45q.76-.076 1.492-.077c4.201 0 7.997 1.609 10.68 4.534c3.447 3.755 4.982 8.37 4.314 12.99a15.9 15.9 0 0 1-2.15 5.995c2.314 1.872 4.02 4.48 4.845 7.616a15.94 15.94 0 0 1-2.148 12.855c.22.34.428.699.618 1.064z"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ e("path", {
|
|
16
|
-
fill: "#ff9d00",
|
|
17
|
-
d: "M243.95 188.509a15.94 15.94 0 0 0 2.149-12.856c-.826-3.135-2.531-5.743-4.846-7.616a15.9 15.9 0 0 0 2.15-5.994c.667-4.616-.864-9.227-4.312-12.99c-2.684-2.924-6.48-4.534-10.682-4.534q-.731 0-1.491.076a105 105 0 0 0 4.788-31.449c0-58.012-47.037-105.049-105.05-105.049S21.609 55.121 21.609 113.146a105 105 0 0 0 4.764 31.374h-.111c-4.202 0-7.997 1.61-10.68 4.535c-3.446 3.755-4.98 8.368-4.314 12.99a15.9 15.9 0 0 0 2.15 5.993c-2.314 1.874-4.02 4.482-4.844 7.618a15.92 15.92 0 0 0 2.15 12.857a14 14 0 0 0-.617 1.067c-2.076 3.942-2.21 8.396-.377 12.543c2.778 6.286 9.683 11.239 23.096 16.557c8.337 3.307 15.973 5.42 16.035 5.44c11.028 2.86 21.007 4.314 29.634 4.314c14.183 0 24.761-3.878 31.51-11.542a106.3 106.3 0 0 0 34.495-.195c6.746 7.791 17.39 11.737 31.685 11.737c8.634 0 18.608-1.453 29.634-4.313c.067-.02 7.7-2.134 16.035-5.441c13.413-5.315 20.311-10.269 23.096-16.557c1.833-4.148 1.7-8.602-.377-12.543q-.287-.554-.619-1.067zm-138.722 16.383a42 42 0 0 1-1.868 2.977c-1.747 2.557-4.044 4.51-6.709 5.963c-5.098 2.778-11.548 3.75-18.098 3.75c-10.352 0-20.97-2.423-26.912-3.966c-.292-.076-36.458-10.293-31.884-18.994c.77-1.462 2.04-2.046 3.636-2.046c6.448 0 18.185 9.601 23.232 9.601c1.126 0 1.922-.48 2.246-1.65c2.15-7.714-32.679-10.955-29.745-22.127c.518-1.976 1.921-2.778 3.896-2.778c8.524-.001 27.658 14.991 31.66 14.991c.308 0 .528-.09.647-.278l.052-.086c1.877-3.101.8-5.356-12.067-13.238l-1.236-.752c-14.158-8.571-24.102-13.723-18.446-19.876c.65-.711 1.57-1.026 2.69-1.026c1.33 0 2.937.445 4.707 1.19c7.478 3.153 17.837 11.754 22.176 15.5a168 168 0 0 1 2.028 1.79s5.482 5.7 8.797 5.7c.763 0 1.41-.299 1.849-1.043c2.351-3.963-21.828-22.288-23.195-29.846c-.924-5.123.648-7.718 3.558-7.718c1.383 0 3.07.588 4.934 1.77c5.78 3.67 16.943 22.847 21.032 30.306c1.37 2.5 3.708 3.557 5.815 3.557c4.18 0 7.448-4.155.383-9.436c-10.62-7.946-6.893-20.932-1.825-21.728q.325-.05.653-.052c4.609 0 6.642 7.943 6.642 7.943s5.958 14.966 16.197 25.196c9.29 9.284 10.586 16.905 5.175 26.402zm33.102 1.753l-.53.063l-.907.104q-.714.074-1.43.14l-.468.043l-.425.036l-.605.049q-.334.025-.668.047l-.666.045l-.147.008l-.524.031l-.223.012l-.621.03l-.723.03l-.656.023l-.438.012h-.22c-.138 0-.273.008-.41.01h-.217q-.204-.002-.41.007l-.555.006h-.778q-.915 0-1.826-.018l-.492-.01c-.14 0-.28-.008-.42-.012l-.52-.016l-.649-.025l-.583-.025l-.151-.006l-.556-.03q-.231-.012-.461-.026l-.36-.021a99 99 0 0 1-1.353-.096l-.473-.037l-.596-.051l-.698-.065q-.584-.054-1.167-.12h-.018c5.68-12.678 2.808-24.512-8.672-35.973c-7.528-7.517-12.542-18.62-13.574-21.057c-2.103-7.215-7.67-15.24-16.917-15.24q-1.174.003-2.334.186c-4.05.636-7.59 2.968-10.117 6.476c-2.728-3.394-5.382-6.093-7.781-7.618c-3.617-2.292-7.226-3.456-10.744-3.456c-4.388 0-8.312 1.802-11.047 5.072l-.068.083l-.154-.648l-.006-.027a92 92 0 0 1-1.31-6.727c0-.017 0-.031-.008-.046l-.077-.511l-.122-.83q-.049-.346-.094-.688q-.046-.344-.09-.689a70 70 0 0 1-.16-1.347l-.007-.056a97 97 0 0 1-.289-3.032l-.043-.585q-.02-.24-.034-.485c0-.037-.005-.076-.007-.11l-.041-.65q-.022-.352-.039-.704l-.035-.705l-.025-.615l-.007-.187l-.019-.57l-.013-.481c0-.193-.01-.387-.013-.58l-.01-.608c-.002-.202 0-.404-.005-.606c-.006-.204 0-.407 0-.61c0-52.022 42.176-94.198 94.21-94.198s94.21 42.176 94.21 94.197v1.217q-.001.306-.01.608c0 .17-.007.335-.012.504q-.001.226-.012.445c0 .19-.011.379-.017.569v.016l-.051 1.238l-.008.137l-.032.616l-.03.489a98 98 0 0 1-.271 3.47v.015q-.03.326-.066.65l-.166 1.51l-.064.507l-.078.594q-.042.326-.088.65l-.105.725l-.087.57l-.102.645q-.051.323-.11.644c-.043.214-.075.428-.112.643q-.111.641-.235 1.28q-.248 1.274-.521 2.541q-.069.315-.142.632c-2.651-2.577-6.161-3.98-10.035-3.98c-3.514 0-7.126 1.162-10.742 3.455c-2.4 1.524-5.052 4.224-7.783 7.619c-2.53-3.51-6.07-5.84-10.116-6.478a15 15 0 0 0-2.334-.184c-9.247 0-14.817 8.021-16.918 15.24c-1.043 2.437-6.052 13.536-13.586 21.07c-11.47 11.433-14.37 23.22-8.773 35.836zm97.255-25.37l-.037.11q-.038.106-.08.211a6.5 6.5 0 0 1-.55 1.026q-.311.465-.683.884c-.057.064-.112.128-.176.191q-.132.143-.272.282c-1.675 1.66-4.226 3.113-7.11 4.448q-.489.222-.993.444l-.333.147a66 66 0 0 1-1.362.58l-.694.287c-1.622.667-3.284 1.303-4.906 1.932l-.692.268l-.686.268q-.682.267-1.35.534l-.66.266l-.647.266l-.32.133q-.316.133-.626.266c-4.77 2.046-8.201 4.128-7.48 6.712q.03.11.067.21q.097.288.262.542q.098.154.223.285c.847.88 2.39.74 4.335.042q.238-.085.483-.183q.166-.064.334-.131l.168-.071c.445-.19.916-.4 1.398-.63c.12-.055.243-.11.364-.174c2.378-1.163 5.074-2.73 7.75-4.156q.616-.331 1.23-.646a57 57 0 0 1 2.025-1c2.533-1.192 4.914-2.037 6.83-2.037c.897 0 1.691.184 2.351.607l.11.073a3.6 3.6 0 0 1 1.023 1.101q.08.129.15.264c.946 1.795.154 3.656-1.698 5.48c-1.779 1.75-4.546 3.466-7.692 5.056q-.349.178-.704.35c-9.36 4.597-21.616 8.059-21.79 8.102c-3.267.847-7.938 1.96-13.201 2.791l-.78.12l-.126.02q-1.79.267-3.59.473l-.11.011a84 84 0 0 1-6.66.505h-.034q-1.208.044-2.416.043h-.927a59 59 0 0 1-3.68-.166q-.042.002-.088-.007a47 47 0 0 1-3.56-.42l-.9-.151q-.206-.037-.409-.077l-.032-.007a35 35 0 0 1-1.288-.27c-.247-.057-.496-.113-.74-.178l-.147-.039q-.182-.046-.36-.094l-.067-.018l-.384-.11l-.416-.122l-.05-.015l-.362-.11l-.407-.131q-.167-.058-.335-.112l-.245-.086q-.354-.124-.703-.259l-.221-.085l-.183-.074q-.528-.212-1.05-.445l-.23-.11l-.039-.018q-.123-.058-.245-.112a21 21 0 0 1-.477-.237l-.047-.024l-.23-.12a19 19 0 0 1-1.195-.679l-.214-.13c-.11-.068-.211-.136-.317-.204l-.278-.185a10 10 0 0 1-.3-.207l-.179-.127a17 17 0 0 1-.557-.416q-.145-.114-.288-.223q-.318-.255-.625-.525l-.009-.008q-.3-.26-.585-.534l-.01-.013q-.15-.14-.294-.287t-.286-.293q-.142-.149-.28-.304q-.134-.145-.264-.294l-.03-.034a19 19 0 0 1-1.258-1.634l-.154-.228q-.153-.226-.302-.453l-.293-.452a38 38 0 0 1-.712-1.145q-.122-.204-.24-.406q-.064-.11-.125-.222c-.04-.078-.09-.156-.133-.234l-.07-.123l-.043-.081a13 13 0 0 1-.246-.451q-.053-.1-.11-.2l-.113-.213l-.11-.212l-.214-.432l-.102-.212q-.109-.23-.212-.454q-.043-.092-.081-.183a14 14 0 0 1-.273-.63c-.058-.14-.111-.28-.169-.419q-.24-.615-.448-1.243q-.063-.185-.118-.372q-.134-.423-.243-.854a16 16 0 0 1-.232-1.011q-.064-.3-.11-.605q-.051-.3-.087-.599a16 16 0 0 1-.108-1.193c0-.066-.006-.133-.007-.199q-.01-.197-.011-.395c-.07-5.31 2.619-10.418 8.365-16.16c10.235-10.226 16.197-25.196 16.197-25.196s.16-.628.495-1.53q.167-.45.351-.893q.21-.5.453-.985l.047-.095q.311-.619.678-1.206c.056-.09.11-.181.175-.27q.272-.407.577-.789q.235-.293.498-.563c.594-.611 1.272-1.111 2.039-1.378l.097-.031q.096-.031.194-.06q.116-.03.23-.055l.036-.006a4 4 0 0 1 .49-.066h.015c.086 0 .172-.009.26-.009q.33.003.657.053c.922.145 1.8.695 2.557 1.542l.101.12q.37.433.67.92q.222.36.422.756c.053.112.104.214.155.324q.038.083.074.167q.074.166.141.34c.26.666.461 1.354.603 2.055q.226 1.137.262 2.297q.015.509 0 1.03q-.008.198-.022.398a14.9 14.9 0 0 1-.956 4.316c-.053.137-.112.276-.166.415a15 15 0 0 1-.929 1.855q-.3.51-.648 1.014l-.141.201a17 17 0 0 1-1.829 2.148q-.99.99-2.112 1.829a17 17 0 0 0-2.1 1.834c-1.869 1.962-2.304 3.691-1.884 5.002q.075.223.176.434c.155.305.356.584.598.828l.065.066q.103.1.214.19l.075.061a4.3 4.3 0 0 0 .573.372c.057.03.11.062.176.092q.413.204.858.33l.082.02l.11.03l.098.024l.103.022l.103.021l.098.016q.111.02.221.035l.073.01l.128.014l.08.007l.13.01h.077l.136.006h.432l.123-.006l.142-.009l.172-.016l.162-.02c.036 0 .073-.01.11-.016a6.3 6.3 0 0 0 1.973-.631a6.5 6.5 0 0 0 1.44-.993l.176-.167q.043-.04.082-.082a6 6 0 0 0 .484-.543a7.5 7.5 0 0 0 .707-1.068a283 283 0 0 1 7.646-13.064l.365-.586l.37-.586q.278-.445.555-.88l.188-.291l.374-.583q.753-1.165 1.513-2.306l.379-.567a134 134 0 0 1 2.271-3.265l.375-.515a68 68 0 0 1 2.552-3.308l.352-.42c.057-.07.11-.14.174-.208l.345-.399c.057-.065.111-.13.171-.193l.333-.377l.168-.182q.243-.262.492-.52c.112-.11.215-.222.323-.325a13 13 0 0 1 2.075-1.724l.173-.11l.175-.112q.168-.105.34-.2c2.94-1.667 5.373-1.79 6.773-.39c.849.848 1.317 2.254 1.293 4.21q.002.128-.008.262v.097q-.002.133-.014.27c0 .11-.013.222-.024.332c-.012.112-.017.197-.028.295q-.002.043-.01.086l-.03.262c0 .027 0 .053-.012.08q-.019.179-.051.354a5 5 0 0 1-.052.324l-.031.186a5 5 0 0 1-.126.523q-.143.481-.35.94q-.09.202-.188.397q-.202.404-.453.832q-.124.212-.26.431l-.14.222q-.212.333-.444.674q-.23.342-.497.695q-.345.471-.728.956l-.194.245a67 67 0 0 1-1.684 2.014l-.457.516l-.232.26q-.475.532-.956 1.056l-.246.266c-.163.177-.333.356-.496.533q-.251.27-.505.539l-.512.539l-.518.54q-.26.273-.522.544l-1.056 1.088c-5.04 5.17-10.352 10.322-12.149 13.536q-.18.315-.326.645c-.255.585-.361 1.084-.29 1.488q.037.201.14.377q.153.264.367.481q.097.098.208.18c.37.264.817.4 1.27.386h.143l.145-.01l.147-.018l.12-.017q.024-.002.049-.009l.11-.021l.03-.007l.122-.027l.174-.044l.155-.046q.152-.047.309-.105q.337-.12.66-.274q.082-.038.164-.08l.165-.082q.323-.164.648-.356q.258-.151.516-.316l.166-.111q.083-.052.165-.112l.166-.11l.087-.062l.238-.166c.223-.154.43-.312.642-.472l.019-.014l.333-.259c.456-.36.89-.723 1.281-1.065l.261-.23l.025-.022l.136-.12c.32-.288.606-.556.845-.779l.097-.094l.235-.223l.14-.137l.049-.05l.013-.013l.239-.24l.01-.01l.045-.04q.02-.022.053-.048l.018-.016l.047-.043l.252-.222l.142-.128q.106-.09.222-.202l.17-.149q.045-.038.091-.08l.178-.156l.262-.229l.138-.12c.541-.471 1.2-1.04 1.954-1.68l.31-.26l.512-.43l.522-.437c.684-.567 1.42-1.17 2.198-1.796l.51-.41q.655-.52 1.336-1.056q.272-.215.555-.427a143 143 0 0 1 4.677-3.466l.478-.332q.5-.347 1-.686l.303-.205q.896-.605 1.809-1.182l.302-.19l.3-.187q.45-.279.894-.547l.297-.176l.596-.347q.292-.17.583-.333l.117-.066l.462-.252q.288-.157.574-.304l.286-.146l.276-.14q.948-.477 1.928-.88q.135-.055.266-.112q.263-.11.522-.2q.26-.088.511-.179q.228-.075.445-.143l.048-.015q.117-.035.232-.065l.022-.007q.235-.066.471-.123h.013q.348-.084.68-.14q.113-.02.222-.035q.323-.048.648-.07q.205-.014.411-.013h.105q.207 0 .406.022c.06 0 .122.011.181.02h.025q.09.01.18.029c.058.012.117.02.175.034h.02c.057.013.11.029.17.045c.475.128.91.37 1.273.703l.032.032l.063.062l.063.066a6.9 6.9 0 0 1 1.221 1.779l.049.11q.16.374.247.77c.162.734.118 1.5-.127 2.211q-.157.465-.387.899l-.102.184a10.3 10.3 0 0 1-1.366 1.805l-.112.118q-.368.39-.762.754q-.126.118-.256.235l-.132.12q-.411.363-.837.71q-.075.059-.149.121q-.295.24-.613.482a53 53 0 0 1-2.226 1.613q-.667.455-1.38.923q-1.327.87-2.676 1.706q-.388.241-.787.484c-2.445 1.505-5.156 3.113-8.047 4.862l-.748.455q-1.23.75-2.32 1.43l-.367.232l-.693.445q-.412.26-.802.514q-.294.189-.576.373l-.37.244q-.27.176-.538.357l-.174.11q-.276.184-.537.363l-.285.194l-.334.233l-.309.215q-.73.512-1.445 1.046l-.167.127q-.281.214-.544.422l-.229.182q-.578.465-1.05.89l-.154.142q-.134.121-.258.241l-.17.165l-.08.08q-.268.267-.52.548l-.081.095a8 8 0 0 0-.482.611l-.063.09a5.3 5.3 0 0 0-.426.746l-.042.09l-.026.064l-.022.054l-.028.076c-.009.026-.026.072-.036.112a3 3 0 0 0-.113.456l-.013.084l-.01.075l-.006.074v.39q-.002.049.008.1q0 .03.006.06c0 .031.009.064.012.097l.024.137v.006q.012.066.028.13q.017.068.037.139q.06.211.144.415c0 .01.008.021.012.031l.045.102q.091.213.204.415l.078.14l.082.142l.086.142l.05.066l.028.03l.03.027l.034.026q.034.024.07.044q.038.017.08.033q.045.015.09.026c.717.162 2.19-.432 4.149-1.466l.352-.187l.595-.324l.292-.162c.206-.112.419-.236.634-.36l.394-.222c2.59-1.49 5.683-3.406 8.88-5.275q.45-.263.9-.523l.604-.386q.453-.26.905-.514a99 99 0 0 1 3.905-2.106l.59-.3q.59-.29 1.166-.566a52 52 0 0 1 2.256-1.005l.417-.169l.05-.02c2.206-.874 4.206-1.414 5.824-1.414q.526-.004 1.046.085h.01c.111.02.212.043.314.069h.019q.224.054.437.139q.17.062.328.147a3.1 3.1 0 0 1 1.227 1.12q.165.25.281.527q.069.157.128.333c.04.12.075.234.11.357a4.86 4.86 0 0 1-.074 2.866z"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ e("path", {
|
|
20
|
-
fill: "#ffd21e",
|
|
21
|
-
d: "M220.83 113.728v-.61c0-52.02-42.163-94.197-94.197-94.197c-52.02 0-94.21 42.177-94.21 94.198l-.002.204v.405q.01.303.008.608l.007.447l.002.162l.007.221q.005.179.006.357l.012.483l.02.568l.006.187l.025.588v.027l.035.687v.018q.019.353.04.703q.019.326.04.65l.005.04q.016.276.037.556l.004.048q.019.27.04.537l.003.035l.025.311q.111 1.344.261 2.686l.006.056l.075.656l.086.692a85 85 0 0 0 .304 2.206l.006.034q.14.937.301 1.87q.464 2.706 1.09 5.38l.005.029l.04.168l.114.478l.069-.083c2.734-3.27 6.657-5.072 11.047-5.072c3.517 0 7.127 1.163 10.743 3.456c2.4 1.524 5.052 4.224 7.782 7.618c2.525-3.509 6.066-5.84 10.115-6.476a15 15 0 0 1 2.335-.185c9.244 0 14.817 8.023 16.918 15.24c1.037 2.438 6.047 13.536 13.598 21.057c11.48 11.47 14.357 23.307 8.672 35.973h.018q.582.064 1.168.118q.349.035.697.065l.082.007q.256.024.513.044l.473.038q.674.052 1.355.096l.358.021l.284.016l.178.01l.554.03l.152.006l.584.025l.648.025l.522.015l.087.004q.165.006.332.008l.118.003q1.1.026 2.199.026h.778l.557-.006q.204-.01.409-.008h.216l.188-.003q.11-.005.221-.005h.223l.436-.013l.656-.022l.724-.031l.621-.03l.223-.013l.33-.018l.194-.011l.146-.01l.667-.044q.334-.02.668-.048l.604-.048l.426-.036l.466-.042q.719-.067 1.431-.142q.454-.05.906-.103l.531-.063c-5.592-12.617-2.697-24.4 8.736-35.824c7.535-7.53 12.542-18.633 13.587-21.07c2.104-7.216 7.667-15.24 16.917-15.24q1.175.002 2.335.186c4.046.636 7.587 2.968 10.117 6.476c2.73-3.395 5.382-6.095 7.781-7.619c3.616-2.293 7.228-3.455 10.742-3.455c3.874 0 7.385 1.404 10.037 3.98q.218-.973.42-1.95q.123-.609.242-1.222q.147-.754.274-1.512q.033-.205.072-.411q.06-.321.11-.644l.014-.082l.088-.563l.087-.57l.002-.007l.103-.718q.038-.272.074-.546l.015-.105l.077-.594l.064-.506q.058-.5.112-1q.024-.2.043-.402l.013-.108q.034-.333.064-.666l.05-.517q.154-1.718.251-3.441v-.008l.034-.609l.006-.136l.025-.578q.014-.327.026-.66v-.017l.006-.16a9 9 0 0 0 .011-.409l.003-.056q.009-.191.01-.389l.003-.112q.007-.195.008-.39l.002-.11q.007-.25.008-.5zm-117.553 94.11c7.459-10.941 6.93-19.155-3.306-29.385s-16.196-25.197-16.196-25.197s-2.224-8.691-7.296-7.892c-5.071.798-8.792 13.786 1.826 21.729c10.618 7.949-2.112 13.337-6.199 5.88c-4.088-7.462-15.24-26.64-21.032-30.306c-5.785-3.668-9.854-1.612-8.49 5.948c.678 3.753 6.977 10.157 12.866 16.134c5.971 6.073 11.516 11.71 10.332 13.699c-2.353 3.962-10.64-4.656-10.64-4.656s-25.955-23.617-31.599-17.464c-5.207 5.672 2.823 10.494 15.203 17.924q1.58.949 3.246 1.956c14.159 8.572 15.265 10.833 13.251 14.07c-.742 1.2-5.482-1.646-11.311-5.147c-9.939-5.966-23.046-13.835-24.898-6.791c-1.603 6.094 8.038 9.828 16.78 13.213c7.285 2.822 13.947 5.402 12.965 8.905c-1.015 3.631-6.52.603-12.542-2.708c-6.756-3.718-14.158-7.792-16.582-3.195c-4.58 8.689 31.586 18.919 31.884 18.993c11.684 3.031 41.356 9.453 51.735-5.746zm48.055 0c-7.46-10.941-6.93-19.155 3.306-29.385s16.196-25.197 16.196-25.197s2.223-8.691 7.294-7.892c5.072.798 8.794 13.786-1.826 21.729c-10.619 7.943 2.112 13.337 6.2 5.88c4.088-7.462 15.24-26.64 21.02-30.306s9.855-1.612 8.492 5.948c-.678 3.753-6.978 10.158-12.866 16.147c-5.97 6.07-11.515 11.708-10.33 13.698c2.351 3.963 10.646-4.66 10.646-4.66s25.954-23.618 31.598-17.465c5.207 5.672-2.824 10.495-15.203 17.925a847 847 0 0 0-3.245 1.954c-14.158 8.57-15.265 10.833-13.25 14.071c.741 1.198 5.481-1.647 11.31-5.146c9.939-5.967 23.045-13.835 24.898-6.793c1.602 6.094-8.04 9.83-16.781 13.213c-7.285 2.822-13.947 5.401-12.965 8.905c1.015 3.631 6.518.602 12.53-2.71c6.755-3.717 14.158-7.792 16.582-3.194c4.579 8.695-31.586 18.919-31.884 18.993c-11.685 3.04-41.356 9.461-51.723-5.737z"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ e("path", {
|
|
24
|
-
fill: "#32343d",
|
|
25
|
-
d: "M157.311 87.475c1.468.52 2.56 2.102 3.6 3.606c1.405 2.035 2.712 3.927 4.719 2.86a13.545 13.545 0 0 0 7.128-13.266a13.55 13.55 0 0 0-5.935-9.956a13.56 13.56 0 0 0-18.015 2.634a13.57 13.57 0 0 0-3.028 7.262a13.56 13.56 0 0 0 1.517 7.721c.93 1.75 2.994.925 5.171.054c1.708-.683 3.486-1.394 4.843-.915m-63.867.001c-1.468.52-2.562 2.102-3.6 3.606c-1.406 2.034-2.713 3.927-4.72 2.86a13.55 13.55 0 0 1-6.92-9.295a13.56 13.56 0 0 1 2.789-11.248a13.557 13.557 0 0 1 23.986 7.216a13.55 13.55 0 0 1-1.52 7.721c-.932 1.75-2.995.924-5.173.053c-1.707-.683-3.484-1.394-4.842-.914zm53.985 58.112c10.122-7.975 13.835-20.995 13.835-29.012c0-6.34-4.266-4.345-11.094-.965l-.384.191c-6.269 3.104-14.618 7.236-23.767 7.236c-9.16 0-17.502-4.133-23.767-7.237c-7.049-3.492-11.47-5.682-11.47.776c0 8.272 3.955 21.852 14.817 29.746a23.55 23.55 0 0 1 14.386-12.165c1.084-.323 2.2 1.543 3.344 3.452c1.103 1.844 2.229 3.728 3.376 3.728c1.22 0 2.422-1.857 3.594-3.67c1.224-1.895 2.418-3.742 3.572-3.373a23.57 23.57 0 0 1 13.562 11.29z"
|
|
26
|
-
}),
|
|
27
|
-
/* @__PURE__ */ e("path", {
|
|
28
|
-
fill: "#ff323d",
|
|
29
|
-
d: "M147.367 145.624c-5.272 4.154-12.279 6.94-21.405 6.94c-8.573 0-15.277-2.459-20.423-6.202a23.58 23.58 0 0 1 14.387-12.164c2.13-.635 4.384 7.18 6.718 7.18c2.5 0 4.908-7.765 7.168-7.043a23.6 23.6 0 0 1 13.561 11.29z"
|
|
30
|
-
}),
|
|
31
|
-
/* @__PURE__ */ e("path", {
|
|
32
|
-
fill: "#ffad03",
|
|
33
|
-
d: "M69.217 98.762a8.8 8.8 0 0 1-6.623 1.335a8.81 8.81 0 0 1-6.939-6.931a8.82 8.82 0 0 1 1.328-6.626a8.812 8.812 0 0 1 15.96 6.615a8.8 8.8 0 0 1-3.726 5.607m126.044 0a8.8 8.8 0 0 1-6.623 1.335a8.81 8.81 0 0 1-6.939-6.931a8.812 8.812 0 1 1 13.562 5.596"
|
|
34
|
-
})
|
|
35
|
-
]
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
//#endregion
|
|
39
|
-
export { n as HuggingFace };
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import "./apple.js";
|
|
2
|
-
import "./atlassian.js";
|
|
3
|
-
import "./cognito.js";
|
|
4
|
-
import "./discord.js";
|
|
5
|
-
import "./dropbox.js";
|
|
6
|
-
import "./facebook.js";
|
|
7
|
-
import "./figma.js";
|
|
8
|
-
import "./github.js";
|
|
9
|
-
import "./gitlab.js";
|
|
10
|
-
import "./google.js";
|
|
11
|
-
import "./huggingface.js";
|
|
12
|
-
import "./kakao.js";
|
|
13
|
-
import "./kick.js";
|
|
14
|
-
import "./line.js";
|
|
15
|
-
import "./linear.js";
|
|
16
|
-
import "./linkedin.js";
|
|
17
|
-
import "./microsoft.js";
|
|
18
|
-
import "./naver.js";
|
|
19
|
-
import "./notion.js";
|
|
20
|
-
import "./paybin.js";
|
|
21
|
-
import "./paypal.js";
|
|
22
|
-
import "./polar.js";
|
|
23
|
-
import "./railway.js";
|
|
24
|
-
import "./reddit.js";
|
|
25
|
-
import "./roblox.js";
|
|
26
|
-
import "./salesforce.js";
|
|
27
|
-
import "./slack.js";
|
|
28
|
-
import "./spotify.js";
|
|
29
|
-
import "./tiktok.js";
|
|
30
|
-
import "./twitch.js";
|
|
31
|
-
import "./vercel.js";
|
|
32
|
-
import "./vk.js";
|
|
33
|
-
import "./wechat.js";
|
|
34
|
-
import "./x.js";
|
|
35
|
-
import "./zoom.js";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/kakao.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 576 512",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Kakao",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M288 2.5c159.1 0 288 101.7 288 227.1S447.1 456.7 288 456.7c-17.5 0-34.6-1.2-51.2-3.6c-16.6 11.7-112.6 79.1-121.7 80.4c0 0-3.7 1.4-6.9-.4s-2.6-6.7-2.6-6.7c1-6.6 25-89.2 29.4-104.5C53.9 381.8 0 310.6 0 229.5c0-125.4 128.9-227 288-227M86.2 161.7c-9 0-16.3 7.3-16.3 16.3s7.3 16.3 16.3 16.3h25.9V293c0 8.8 7.5 15.9 16.6 15.9s16.6-7.1 16.6-15.9v-98.7h25.9c9 0 16.3-7.3 16.3-16.3s-7.3-16.3-16.3-16.3H86.1zm140.8 0c-10.8.2-19.3 8.4-22.1 16.4l-39.7 104.6c-5 15.7-.6 21.5 3.9 23.6c3.2 1.5 6.9 2.3 10.6 2.3c6.9 0 12.2-2.8 13.8-7.3l8.2-21.6h50.7l8.2 21.5c1.6 4.5 6.9 7.3 13.8 7.3c3.7 0 7.3-.8 10.6-2.3c4.6-2.1 9-7.9 3.9-23.6l-39.7-104.5c-2.8-8-11.3-16.2-22.2-16.4m180.9 0c-9.2 0-16.6 7.5-16.6 16.6V292c0 9.2 7.5 16.6 16.6 16.6s16.6-7.5 16.6-16.6v-36.2l5.8-5.8l38.9 51.6c3.2 4.2 8 6.6 13.3 6.6c3.6 0 7.1-1.1 10-3.3c3.5-2.7 5.8-6.6 6.4-11s-.5-8.8-3.2-12.3l-40.9-54.2l37.9-37.8c2.6-2.6 3.9-6.2 3.7-10.1s-2-7.6-4.9-10.5c-3.1-3.1-7.3-4.9-11.4-4.9c-3.6 0-6.8 1.3-9.2 3.7l-46.3 46.4v-35.7c0-9.2-7.5-16.6-16.6-16.6zm-91.3 0c-9.3 0-16.9 7.5-16.9 16.6v112.8c0 8.4 7.1 15.2 15.9 15.3h53.3c8.8 0 15.9-6.9 15.9-15.3s-7.2-15.2-15.9-15.2h-35.3v-97.6c0-9.2-7.6-16.6-17-16.6m-73 88.6h-33.2l16.6-47.1z"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Kakao };
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/kick.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 512 512",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Kick",
|
|
9
|
-
fillRule: "evenodd",
|
|
10
|
-
clipRule: "evenodd",
|
|
11
|
-
strokeLinejoin: "round",
|
|
12
|
-
strokeMiterlimit: 2,
|
|
13
|
-
...t,
|
|
14
|
-
children: /* @__PURE__ */ e("path", {
|
|
15
|
-
d: "M37 .036h164.448v113.621h54.71v-56.82h54.731V.036h164.448v170.777h-54.73v56.82h-54.711v56.8h54.71v56.82h54.73V512.03H310.89v-56.82h-54.73v-56.8h-54.711v113.62H37V.036z",
|
|
16
|
-
fill: "#00E701"
|
|
17
|
-
})
|
|
18
|
-
});
|
|
19
|
-
}
|
|
20
|
-
//#endregion
|
|
21
|
-
export { t as Kick };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/line.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Line",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M19.365 9.863a.631.631 0 0 1 0 1.261H17.61v1.125h1.755a.63.63 0 1 1 0 1.259h-2.386a.63.63 0 0 1-.627-.629V8.108c0-.345.282-.63.63-.63h2.386a.63.63 0 0 1-.003 1.26H17.61v1.125zm-3.855 3.016a.63.63 0 0 1-.631.627a.62.62 0 0 1-.51-.25l-2.443-3.317v2.94a.63.63 0 0 1-1.257 0V8.108a.627.627 0 0 1 .624-.628c.195 0 .375.104.495.254l2.462 3.33V8.108c0-.345.282-.63.63-.63c.345 0 .63.285.63.63zm-5.741 0a.63.63 0 0 1-.631.629a.63.63 0 0 1-.627-.629V8.108c0-.345.282-.63.63-.63c.346 0 .628.285.628.63zm-2.466.629H4.917a.634.634 0 0 1-.63-.629V8.108c0-.345.285-.63.63-.63c.348 0 .63.285.63.63v4.141h1.756a.63.63 0 0 1 0 1.259M24 10.314C24 4.943 18.615.572 12 .572S0 4.943 0 10.314c0 4.811 4.27 8.842 10.035 9.608c.391.082.923.258 1.058.59c.12.301.079.766.038 1.08l-.164 1.02c-.045.301-.24 1.186 1.049.645c1.291-.539 6.916-4.078 9.436-6.975C23.176 14.393 24 12.458 24 10.314"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Line };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/linear.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Linear",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M2.886 4.18A11.98 11.98 0 0 1 11.99 0C18.624 0 24 5.376 24 12.009c0 3.64-1.62 6.903-4.18 9.105L2.887 4.18ZM1.817 5.626l16.556 16.556q-.787.496-1.65.866L.951 7.277q.371-.863.866-1.65ZM.322 9.163l14.515 14.515q-1.066.26-2.195.322L0 11.358a12 12 0 0 1 .322-2.195m-.17 4.862l9.823 9.824a12.02 12.02 0 0 1-9.824-9.824Z"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Linear };
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/linkedin.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 256",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "LinkedIn",
|
|
9
|
-
...n,
|
|
10
|
-
children: /* @__PURE__ */ t("g", {
|
|
11
|
-
fill: "none",
|
|
12
|
-
children: [
|
|
13
|
-
/* @__PURE__ */ e("rect", {
|
|
14
|
-
width: 256,
|
|
15
|
-
height: 256,
|
|
16
|
-
fill: "#fff",
|
|
17
|
-
rx: 60
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ e("rect", {
|
|
20
|
-
width: 256,
|
|
21
|
-
height: 256,
|
|
22
|
-
fill: "#0a66c2",
|
|
23
|
-
rx: 60
|
|
24
|
-
}),
|
|
25
|
-
/* @__PURE__ */ e("path", {
|
|
26
|
-
fill: "#fff",
|
|
27
|
-
d: "M184.715 217.685h29.27a4 4 0 0 0 4-3.999l.015-61.842c0-32.323-6.965-57.168-44.738-57.168c-14.359-.534-27.9 6.868-35.207 19.228a.32.32 0 0 1-.595-.161V101.66a4 4 0 0 0-4-4h-27.777a4 4 0 0 0-4 4v112.02a4 4 0 0 0 4 4h29.268a4 4 0 0 0 4-4v-55.373c0-15.657 2.97-30.82 22.381-30.82c19.135 0 19.383 17.916 19.383 31.834v54.364a4 4 0 0 0 4 4M38 59.628c0 11.864 9.767 21.626 21.632 21.626c11.862-.001 21.623-9.769 21.623-21.631C81.253 47.761 71.491 38 59.628 38C47.762 38 38 47.763 38 59.627m6.959 158.058h29.307a4 4 0 0 0 4-4V101.66a4 4 0 0 0-4-4H44.959a4 4 0 0 0-4 4v112.025a4 4 0 0 0 4 4"
|
|
28
|
-
})
|
|
29
|
-
]
|
|
30
|
-
})
|
|
31
|
-
});
|
|
32
|
-
}
|
|
33
|
-
//#endregion
|
|
34
|
-
export { n as LinkedIn };
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/microsoft.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 256",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Microsoft",
|
|
9
|
-
...n,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ e("path", {
|
|
12
|
-
fill: "#f1511b",
|
|
13
|
-
d: "M121.666 121.666H0V0h121.666z"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ e("path", {
|
|
16
|
-
fill: "#80cc28",
|
|
17
|
-
d: "M256 121.666H134.335V0H256z"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ e("path", {
|
|
20
|
-
fill: "#00adef",
|
|
21
|
-
d: "M121.663 256.002H0V134.336h121.663z"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ e("path", {
|
|
24
|
-
fill: "#fbbc09",
|
|
25
|
-
d: "M256 256.002H134.335V134.336H256z"
|
|
26
|
-
})
|
|
27
|
-
]
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
//#endregion
|
|
31
|
-
export { n as Microsoft };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/naver.tsx
|
|
3
|
-
function t(t) {
|
|
4
|
-
return /* @__PURE__ */ e("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 24 24",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Naver",
|
|
9
|
-
...t,
|
|
10
|
-
children: /* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "currentColor",
|
|
12
|
-
d: "M16.273 12.845L7.376 0H0v24h7.726V11.156L16.624 24H24V0h-7.727z"
|
|
13
|
-
})
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as Naver };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/notion.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 268",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Notion",
|
|
9
|
-
...n,
|
|
10
|
-
children: [/* @__PURE__ */ e("path", {
|
|
11
|
-
fill: "#fff",
|
|
12
|
-
d: "M16.092 11.538L164.09.608c18.179-1.56 22.85-.508 34.28 7.801l47.243 33.282C253.406 47.414 256 48.975 256 55.207v182.527c0 11.439-4.155 18.205-18.696 19.24L65.44 267.378c-10.913.517-16.11-1.043-21.825-8.327L8.826 213.814C2.586 205.487 0 199.254 0 191.97V29.726c0-9.352 4.155-17.153 16.092-18.188"
|
|
13
|
-
}), /* @__PURE__ */ e("path", { d: "M164.09.608L16.092 11.538C4.155 12.573 0 20.374 0 29.726v162.245c0 7.284 2.585 13.516 8.826 21.843l34.789 45.237c5.715 7.284 10.912 8.844 21.825 8.327l171.864-10.404c14.532-1.035 18.696-7.801 18.696-19.24V55.207c0-5.911-2.336-7.614-9.21-12.66l-1.185-.856L198.37 8.409C186.94.1 182.27-.952 164.09.608M69.327 52.22c-14.033.945-17.216 1.159-25.186-5.323L23.876 30.778c-2.06-2.086-1.026-4.69 4.163-5.207l142.274-10.395c11.947-1.043 18.17 3.12 22.842 6.758l24.401 17.68c1.043.525 3.638 3.637.517 3.637L71.146 52.095zm-16.36 183.954V81.222c0-6.767 2.077-9.887 8.3-10.413L230.02 60.93c5.724-.517 8.31 3.12 8.31 9.879v153.917c0 6.767-1.044 12.49-10.387 13.008l-161.487 9.361c-9.343.517-13.489-2.594-13.489-10.921M212.377 89.53c1.034 4.681 0 9.362-4.681 9.897l-7.783 1.542v114.404c-6.758 3.637-12.981 5.715-18.18 5.715c-8.308 0-10.386-2.604-16.609-10.396l-50.898-80.079v77.476l16.1 3.646s0 9.362-12.989 9.362l-35.814 2.077c-1.043-2.086 0-7.284 3.63-8.318l9.351-2.595V109.823l-12.98-1.052c-1.044-4.68 1.55-11.439 8.826-11.965l38.426-2.585l52.958 81.113v-71.76l-13.498-1.552c-1.043-5.733 3.111-9.896 8.3-10.404z" })]
|
|
14
|
-
});
|
|
15
|
-
}
|
|
16
|
-
//#endregion
|
|
17
|
-
export { n as Notion };
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/paybin.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 34 34",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "Paybin",
|
|
9
|
-
fill: "#95DD01",
|
|
10
|
-
...n,
|
|
11
|
-
children: [
|
|
12
|
-
/* @__PURE__ */ e("path", { d: "M22.6515 6.79091H24.9212C26.1696 6.79091 27.1909 7.81296 27.1909 9.06212V11.3333C27.1909 12.5825 26.1696 13.6045 24.9212 13.6045H22.6515C21.4032 13.6045 20.3818 12.5825 20.3818 11.3333V9.06212C20.3818 7.81296 21.4032 6.79091 22.6515 6.79091Z" }),
|
|
13
|
-
/* @__PURE__ */ e("path", { d: "M20.3818 2.27121V4.54242C20.3818 5.79158 19.3605 6.81363 18.1121 6.81363H15.8424C14.5941 6.81363 13.5728 5.79158 13.5728 4.54242V2.27121C13.5728 1.02204 14.5941 0 15.8424 0H18.1121C19.3605 0 20.3818 1.02204 20.3818 2.27121Z" }),
|
|
14
|
-
/* @__PURE__ */ e("path", { d: "M27.1909 15.8758V18.147C27.1909 19.3961 28.2123 20.4182 29.4606 20.4182H31.7303C32.9786 20.4182 34 19.3961 34 18.147V15.8758C34 14.6266 32.9786 13.6045 31.7303 13.6045H29.4606C28.2123 13.6045 27.1909 14.6266 27.1909 15.8758Z" }),
|
|
15
|
-
/* @__PURE__ */ e("path", { d: "M11.3258 6.79091H9.05609C7.80776 6.79091 6.78639 7.81296 6.78639 9.06212V11.3333C6.78639 12.5825 7.80776 13.6045 9.05609 13.6045H11.3258C12.5741 13.6045 13.5955 12.5825 13.5955 11.3333V9.06212C13.5955 7.81296 12.5741 6.79091 11.3258 6.79091Z" }),
|
|
16
|
-
/* @__PURE__ */ e("path", { d: "M6.78638 15.8758V18.147C6.78638 19.3961 5.76502 20.4182 4.51669 20.4182H2.26969C1.02136 20.4182 0 19.3961 0 18.147V15.8758C0 14.6266 1.02136 13.6045 2.26969 13.6045H4.53939C5.78772 13.6045 6.80908 14.6266 6.80908 15.8758H6.78638Z" }),
|
|
17
|
-
/* @__PURE__ */ e("path", { d: "M22.6515 27.2091H24.9212C26.1696 27.2091 27.1909 26.187 27.1909 24.9379V22.6667C27.1909 21.4175 26.1696 20.3955 24.9212 20.3955H22.6515C21.4032 20.3955 20.3818 21.4175 20.3818 22.6667V24.9379C20.3818 26.187 21.4032 27.2091 22.6515 27.2091Z" }),
|
|
18
|
-
/* @__PURE__ */ e("path", { d: "M20.3818 31.7288V29.4576C20.3818 28.2084 19.3605 27.1864 18.1121 27.1864H15.8424C14.5941 27.1864 13.5728 28.2084 13.5728 29.4576V31.7288C13.5728 32.978 14.5941 34 15.8424 34H18.1121C19.3605 34 20.3818 32.978 20.3818 31.7288Z" }),
|
|
19
|
-
/* @__PURE__ */ e("path", { d: "M11.3258 27.2091H9.05609C7.80776 27.2091 6.78639 26.187 6.78639 24.9379V22.6667C6.78639 21.4175 7.80776 20.3955 9.05609 20.3955H11.3258C12.5741 20.3955 13.5955 21.4175 13.5955 22.6667V24.9379C13.5955 26.187 12.5741 27.2091 11.3258 27.2091Z" }),
|
|
20
|
-
/* @__PURE__ */ e("path", { d: "M18.1121 20.3955H15.8424C14.5941 20.3955 13.5728 19.3734 13.5728 18.1242V15.853C13.5728 14.6039 14.5941 13.5818 15.8424 13.5818H18.1121C19.3605 13.5818 20.3818 14.6039 20.3818 15.853V18.1242C20.3818 19.3734 19.3605 20.3955 18.1121 20.3955Z" }),
|
|
21
|
-
/* @__PURE__ */ e("path", { d: "M20.3818 24.9379C20.3818 26.187 21.4032 27.2091 22.6515 27.2091C21.4032 27.2091 20.3818 28.2311 20.3818 29.4803C20.3818 28.2311 19.3605 27.2091 18.1121 27.2091C19.3605 27.2091 20.3818 26.187 20.3818 24.9379Z" }),
|
|
22
|
-
/* @__PURE__ */ e("path", { d: "M27.1909 18.1243C27.1909 19.3734 28.2123 20.3955 29.4606 20.3955C28.2123 20.3955 27.1909 21.4175 27.1909 22.6667C27.1909 21.4175 26.1696 20.3955 24.9212 20.3955C26.1696 20.3955 27.1909 19.3734 27.1909 18.1243Z" }),
|
|
23
|
-
/* @__PURE__ */ e("path", { d: "M6.78639 18.1243C6.78639 19.3734 7.80776 20.3955 9.05609 20.3955C7.80776 20.3955 6.78639 21.4175 6.78639 22.6667C6.78639 21.4175 5.76503 20.3955 4.5167 20.3955C5.76503 20.3955 6.78639 19.3734 6.78639 18.1243Z" }),
|
|
24
|
-
/* @__PURE__ */ e("path", { d: "M13.5955 18.1243C13.5955 19.3734 14.6168 20.3955 15.8652 20.3955C14.6168 20.3955 13.5955 21.4175 13.5955 22.6667C13.5955 21.4175 12.5741 20.3955 11.3258 20.3955C12.5741 20.3955 13.5955 19.3734 13.5955 18.1243Z" }),
|
|
25
|
-
/* @__PURE__ */ e("path", { d: "M18.1121 6.79092C19.3605 6.79092 20.3818 5.76888 20.3818 4.51971C20.3818 5.76888 21.4032 6.79091 22.6515 6.79091C21.4032 6.79091 20.3818 7.81296 20.3818 9.06212C20.3818 7.81296 19.3605 6.79092 18.1121 6.79092Z" }),
|
|
26
|
-
/* @__PURE__ */ e("path", { d: "M24.9212 13.6045C26.1696 13.6045 27.1909 12.5825 27.1909 11.3333C27.1909 12.5825 28.2123 13.6045 29.4606 13.6045C28.2123 13.6045 27.1909 14.6266 27.1909 15.8758C27.1909 14.6266 26.1696 13.6045 24.9212 13.6045Z" }),
|
|
27
|
-
/* @__PURE__ */ e("path", { d: "M11.3258 6.79091C12.5741 6.79091 13.5955 5.76888 13.5955 4.51971C13.5955 5.76888 14.6168 6.79092 15.8652 6.79092C14.6168 6.79092 13.5955 7.81296 13.5955 9.06212C13.5955 7.81296 12.5741 6.79091 11.3258 6.79091Z" }),
|
|
28
|
-
/* @__PURE__ */ e("path", { d: "M4.53939 13.6045C5.78772 13.6045 6.80908 12.5825 6.80908 11.3333C6.80908 12.5825 7.83044 13.6045 9.07878 13.6045C7.83044 13.6045 6.80908 14.6266 6.80908 15.8758C6.80908 14.6266 5.78772 13.6045 4.53939 13.6045Z" })
|
|
29
|
-
]
|
|
30
|
-
});
|
|
31
|
-
}
|
|
32
|
-
//#endregion
|
|
33
|
-
export { n as Paybin };
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { jsx as e, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
//#region src/components/icons/paypal.tsx
|
|
3
|
-
function n(n) {
|
|
4
|
-
return /* @__PURE__ */ t("svg", {
|
|
5
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
-
viewBox: "0 0 256 302",
|
|
7
|
-
role: "img",
|
|
8
|
-
"aria-label": "PayPal",
|
|
9
|
-
...n,
|
|
10
|
-
children: [
|
|
11
|
-
/* @__PURE__ */ e("path", {
|
|
12
|
-
fill: "#27346a",
|
|
13
|
-
d: "M217.168 23.507C203.234 7.625 178.046.816 145.823.816h-93.52A13.39 13.39 0 0 0 39.076 12.11L.136 259.077c-.774 4.87 2.997 9.28 7.933 9.28h57.736l14.5-91.971l-.45 2.88c1.033-6.501 6.593-11.296 13.177-11.296h27.436c53.898 0 96.101-21.892 108.429-85.221c.366-1.873.683-3.696.957-5.477q-2.334-1.236 0 0c3.671-23.407-.025-39.34-12.686-53.765"
|
|
14
|
-
}),
|
|
15
|
-
/* @__PURE__ */ e("path", {
|
|
16
|
-
fill: "#27346a",
|
|
17
|
-
d: "M102.397 68.84a11.7 11.7 0 0 1 5.053-1.14h73.318c8.682 0 16.78.565 24.18 1.756a102 102 0 0 1 6.177 1.182a90 90 0 0 1 8.59 2.347c3.638 1.215 7.026 2.63 10.14 4.287c3.67-23.416-.026-39.34-12.687-53.765C203.226 7.625 178.046.816 145.823.816H52.295C45.71.816 40.108 5.61 39.076 12.11L.136 259.068c-.774 4.878 2.997 9.282 7.925 9.282h57.744L95.888 77.58a11.72 11.72 0 0 1 6.509-8.74"
|
|
18
|
-
}),
|
|
19
|
-
/* @__PURE__ */ e("path", {
|
|
20
|
-
fill: "#2790c3",
|
|
21
|
-
d: "M228.897 82.749c-12.328 63.32-54.53 85.221-108.429 85.221H93.024c-6.584 0-12.145 4.795-13.168 11.296L61.817 293.621c-.674 4.262 2.622 8.124 6.934 8.124h48.67a11.71 11.71 0 0 0 11.563-9.88l.474-2.48l9.173-58.136l.591-3.213a11.71 11.71 0 0 1 11.562-9.88h7.284c47.147 0 84.064-19.154 94.852-74.55c4.503-23.15 2.173-42.478-9.739-56.054c-3.613-4.112-8.1-7.508-13.327-10.28c-.283 1.79-.59 3.604-.957 5.477"
|
|
22
|
-
}),
|
|
23
|
-
/* @__PURE__ */ e("path", {
|
|
24
|
-
fill: "#1f264f",
|
|
25
|
-
d: "M216.952 72.128a90 90 0 0 0-5.818-1.49a110 110 0 0 0-6.177-1.174c-7.408-1.199-15.5-1.765-24.19-1.765h-73.309a11.6 11.6 0 0 0-5.053 1.149a11.68 11.68 0 0 0-6.51 8.74l-15.582 98.798l-.45 2.88c1.025-6.501 6.585-11.296 13.17-11.296h27.444c53.898 0 96.1-21.892 108.428-85.221c.367-1.873.675-3.688.958-5.477q-4.682-2.47-10.14-4.279a83 83 0 0 0-2.77-.865"
|
|
26
|
-
})
|
|
27
|
-
]
|
|
28
|
-
});
|
|
29
|
-
}
|
|
30
|
-
//#endregion
|
|
31
|
-
export { n as PayPal };
|