@better-auth-ui/react 1.6.1 → 1.6.3
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-provider.d.ts +4 -3
- package/dist/components/auth/auth-provider.js +24 -40
- package/dist/components/email/email-changed.d.ts +2 -2
- package/dist/components/email/email-changed.js +154 -68
- package/dist/components/email/email-localization.js +18 -23
- package/dist/components/email/email-styles.js +52 -77
- package/dist/components/email/email-verification.d.ts +2 -2
- package/dist/components/email/email-verification.js +138 -73
- package/dist/components/email/index.d.ts +9 -9
- package/dist/components/email/index.js +9 -9
- package/dist/components/email/magic-link.d.ts +2 -2
- package/dist/components/email/magic-link.js +139 -70
- package/dist/components/email/new-device.d.ts +2 -2
- package/dist/components/email/new-device.js +221 -88
- package/dist/components/email/otp-email.d.ts +2 -2
- package/dist/components/email/otp-email.js +127 -63
- package/dist/components/email/password-changed.d.ts +2 -2
- package/dist/components/email/password-changed.js +157 -74
- package/dist/components/email/reset-password.d.ts +2 -2
- package/dist/components/email/reset-password.js +138 -66
- package/dist/components/icons/apple.d.ts +1 -1
- package/dist/components/icons/apple.js +16 -9
- package/dist/components/icons/atlassian.d.ts +1 -1
- package/dist/components/icons/atlassian.js +38 -13
- package/dist/components/icons/cognito.d.ts +1 -1
- package/dist/components/icons/cognito.js +19 -9
- package/dist/components/icons/discord.d.ts +1 -1
- package/dist/components/icons/discord.js +16 -9
- package/dist/components/icons/dropbox.d.ts +1 -1
- package/dist/components/icons/dropbox.js +16 -9
- package/dist/components/icons/facebook.d.ts +1 -1
- package/dist/components/icons/facebook.js +19 -11
- package/dist/components/icons/figma.d.ts +1 -1
- package/dist/components/icons/figma.js +34 -12
- package/dist/components/icons/github.d.ts +1 -1
- package/dist/components/icons/github.js +16 -11
- package/dist/components/icons/gitlab.d.ts +1 -1
- package/dist/components/icons/gitlab.js +30 -9
- package/dist/components/icons/google.d.ts +1 -1
- package/dist/components/icons/google.js +39 -9
- package/dist/components/icons/huggingface.d.ts +1 -1
- package/dist/components/icons/huggingface.js +38 -9
- package/dist/components/icons/index.d.ts +35 -35
- package/dist/components/icons/index.js +35 -35
- package/dist/components/icons/kakao.d.ts +1 -1
- package/dist/components/icons/kakao.js +16 -11
- package/dist/components/icons/kick.d.ts +1 -1
- package/dist/components/icons/kick.js +20 -11
- package/dist/components/icons/line.d.ts +1 -1
- package/dist/components/icons/line.js +16 -9
- package/dist/components/icons/linear.d.ts +1 -1
- package/dist/components/icons/linear.js +16 -9
- package/dist/components/icons/linkedin.d.ts +1 -1
- package/dist/components/icons/linkedin.js +33 -9
- package/dist/components/icons/microsoft.d.ts +1 -1
- package/dist/components/icons/microsoft.js +30 -9
- package/dist/components/icons/naver.d.ts +1 -1
- package/dist/components/icons/naver.js +16 -9
- package/dist/components/icons/notion.d.ts +1 -1
- package/dist/components/icons/notion.js +16 -9
- package/dist/components/icons/paybin.d.ts +1 -1
- package/dist/components/icons/paybin.js +32 -8
- package/dist/components/icons/paypal.d.ts +1 -1
- package/dist/components/icons/paypal.js +30 -9
- package/dist/components/icons/polar.d.ts +1 -1
- package/dist/components/icons/polar.js +24 -9
- package/dist/components/icons/railway.d.ts +1 -1
- package/dist/components/icons/railway.js +16 -9
- package/dist/components/icons/reddit.d.ts +1 -1
- package/dist/components/icons/reddit.js +21 -9
- package/dist/components/icons/roblox.d.ts +1 -1
- package/dist/components/icons/roblox.js +17 -12
- package/dist/components/icons/salesforce.d.ts +1 -1
- package/dist/components/icons/salesforce.js +16 -9
- package/dist/components/icons/slack.d.ts +1 -1
- package/dist/components/icons/slack.js +30 -9
- package/dist/components/icons/spotify.d.ts +1 -1
- package/dist/components/icons/spotify.js +16 -9
- package/dist/components/icons/tiktok.d.ts +1 -1
- package/dist/components/icons/tiktok.js +23 -10
- package/dist/components/icons/twitch.d.ts +1 -1
- package/dist/components/icons/twitch.js +43 -12
- package/dist/components/icons/vercel.d.ts +1 -1
- package/dist/components/icons/vercel.js +16 -9
- package/dist/components/icons/vk.d.ts +1 -1
- package/dist/components/icons/vk.js +16 -9
- package/dist/components/icons/wechat.d.ts +1 -1
- package/dist/components/icons/wechat.js +16 -9
- package/dist/components/icons/x.d.ts +1 -1
- package/dist/components/icons/x.js +16 -9
- package/dist/components/icons/zoom.d.ts +1 -1
- package/dist/components/icons/zoom.js +69 -11
- package/dist/components/settings/account/theme-preview.js +286 -7
- package/dist/core.d.ts +1 -1
- package/dist/hooks/auth/use-authenticate.d.ts +30 -6
- package/dist/hooks/auth/use-authenticate.js +22 -27
- package/dist/hooks/auth/use-is-username-available.d.ts +20 -0
- package/dist/hooks/auth/use-is-username-available.js +13 -0
- package/dist/hooks/auth/use-request-password-reset.d.ts +12 -17
- package/dist/hooks/auth/use-request-password-reset.js +12 -13
- package/dist/hooks/auth/use-reset-password.d.ts +14 -31
- package/dist/hooks/auth/use-reset-password.js +12 -12
- package/dist/hooks/auth/use-send-verification-email.d.ts +11 -16
- package/dist/hooks/auth/use-send-verification-email.js +12 -12
- package/dist/hooks/auth/use-session.d.ts +31 -5
- package/dist/hooks/auth/use-session.js +15 -17
- package/dist/hooks/auth/use-sign-in-email.d.ts +12 -39
- package/dist/hooks/auth/use-sign-in-email.js +16 -24
- package/dist/hooks/auth/use-sign-in-magic-link.d.ts +15 -20
- package/dist/hooks/auth/use-sign-in-magic-link.js +12 -12
- package/dist/hooks/auth/use-sign-in-passkey.d.ts +13 -50
- package/dist/hooks/auth/use-sign-in-passkey.js +16 -24
- package/dist/hooks/auth/use-sign-in-social.d.ts +32 -62
- package/dist/hooks/auth/use-sign-in-social.js +12 -12
- package/dist/hooks/auth/use-sign-in-username.d.ts +25 -0
- package/dist/hooks/auth/use-sign-in-username.js +17 -0
- package/dist/hooks/auth/use-sign-out.d.ts +11 -12
- package/dist/hooks/auth/use-sign-out.js +15 -23
- package/dist/hooks/auth/use-sign-up-email.d.ts +178 -262
- package/dist/hooks/auth/use-sign-up-email.js +16 -24
- package/dist/hooks/auth/use-user.d.ts +63 -61
- package/dist/hooks/auth/use-user.js +10 -13
- package/dist/hooks/settings/use-account-info.d.ts +12 -12
- package/dist/hooks/settings/use-account-info.js +17 -24
- package/dist/hooks/settings/use-add-passkey.d.ts +11 -33
- package/dist/hooks/settings/use-add-passkey.js +16 -23
- package/dist/hooks/settings/use-change-email.d.ts +12 -15
- package/dist/hooks/settings/use-change-email.js +16 -22
- package/dist/hooks/settings/use-change-password.d.ts +12 -45
- package/dist/hooks/settings/use-change-password.js +12 -10
- package/dist/hooks/settings/use-delete-passkey.d.ts +11 -13
- package/dist/hooks/settings/use-delete-passkey.js +16 -23
- package/dist/hooks/settings/use-delete-user.d.ts +14 -32
- package/dist/hooks/settings/use-delete-user.js +12 -10
- package/dist/hooks/settings/use-link-social.d.ts +23 -26
- package/dist/hooks/settings/use-link-social.js +12 -9
- package/dist/hooks/settings/use-list-accounts.d.ts +10 -8
- package/dist/hooks/settings/use-list-accounts.js +14 -22
- package/dist/hooks/settings/use-list-device-sessions.d.ts +30 -7
- package/dist/hooks/settings/use-list-device-sessions.js +14 -21
- package/dist/hooks/settings/use-list-sessions.d.ts +10 -7
- package/dist/hooks/settings/use-list-sessions.js +14 -21
- package/dist/hooks/settings/use-list-user-passkeys.d.ts +9 -6
- package/dist/hooks/settings/use-list-user-passkeys.js +14 -21
- package/dist/hooks/settings/use-revoke-multi-session.d.ts +12 -12
- package/dist/hooks/settings/use-revoke-multi-session.js +16 -19
- package/dist/hooks/settings/use-revoke-session.d.ts +12 -12
- package/dist/hooks/settings/use-revoke-session.js +16 -20
- package/dist/hooks/settings/use-set-active-session.d.ts +13 -30
- package/dist/hooks/settings/use-set-active-session.js +19 -27
- package/dist/hooks/settings/use-unlink-account.d.ts +13 -13
- package/dist/hooks/settings/use-unlink-account.js +16 -20
- package/dist/hooks/settings/use-update-user.d.ts +1179 -5
- package/dist/hooks/settings/use-update-user.js +23 -28
- package/dist/hooks/use-auth-mutation.d.ts +12 -0
- package/dist/hooks/use-auth-mutation.js +11 -0
- package/dist/hooks/use-auth-query.d.ts +14 -0
- package/dist/hooks/use-auth-query.js +15 -0
- package/dist/index.d.ts +40 -36
- package/dist/index.js +84 -36
- package/dist/lib/auth-client.d.ts +1254 -1254
- package/dist/lib/auth-client.js +11 -11
- package/dist/lib/auth-config.d.ts +3 -3
- package/dist/lib/auth-context.d.ts +2 -2
- package/dist/lib/auth-context.js +5 -2
- package/dist/lib/provider-icons.d.ts +2 -2
- package/dist/lib/provider-icons.js +75 -47
- package/dist/lib/utils.d.ts +1 -1
- package/dist/lib/utils.js +7 -4
- package/dist/mutations/auth/is-username-available-options.d.ts +19 -0
- package/dist/mutations/auth/is-username-available-options.js +7 -0
- package/dist/mutations/auth/request-password-reset-options.d.ts +15 -0
- package/dist/mutations/auth/request-password-reset-options.js +7 -0
- package/dist/mutations/auth/reset-password-options.d.ts +17 -0
- package/dist/mutations/auth/reset-password-options.js +7 -0
- package/dist/mutations/auth/send-verification-email-options.d.ts +15 -0
- package/dist/mutations/auth/send-verification-email-options.js +7 -0
- package/dist/mutations/auth/sign-in-email-options.d.ts +23 -0
- package/dist/mutations/auth/sign-in-email-options.js +11 -0
- package/dist/mutations/auth/sign-in-magic-link-options.d.ts +23 -0
- package/dist/mutations/auth/sign-in-magic-link-options.js +11 -0
- package/dist/mutations/auth/sign-in-passkey-options.d.ts +15 -0
- package/dist/mutations/auth/sign-in-passkey-options.js +11 -0
- package/dist/mutations/auth/sign-in-social-options.d.ts +61 -0
- package/dist/mutations/auth/sign-in-social-options.js +11 -0
- package/dist/mutations/auth/sign-in-username-options.d.ts +19 -0
- package/dist/mutations/auth/sign-in-username-options.js +11 -0
- package/dist/mutations/auth/sign-out-options.d.ts +12 -0
- package/dist/mutations/auth/sign-out-options.js +7 -0
- package/dist/mutations/auth/sign-up-email-options.d.ts +1180 -0
- package/dist/mutations/auth/sign-up-email-options.js +11 -0
- package/dist/mutations/auth-mutation-options.d.ts +25 -0
- package/dist/mutations/auth-mutation-options.js +19 -0
- package/dist/mutations/settings/add-passkey-options.d.ts +15 -0
- package/dist/mutations/settings/add-passkey-options.js +11 -0
- package/dist/mutations/settings/change-email-options.d.ts +15 -0
- package/dist/mutations/settings/change-email-options.js +7 -0
- package/dist/mutations/settings/change-password-options.d.ts +17 -0
- package/dist/mutations/settings/change-password-options.js +7 -0
- package/dist/mutations/settings/delete-passkey-options.d.ts +13 -0
- package/dist/mutations/settings/delete-passkey-options.js +11 -0
- package/dist/mutations/settings/delete-user-options.d.ts +20 -0
- package/dist/mutations/settings/delete-user-options.js +7 -0
- package/dist/mutations/settings/link-social-options.d.ts +39 -0
- package/dist/mutations/settings/link-social-options.js +7 -0
- package/dist/mutations/settings/revoke-multi-session-options.d.ts +13 -0
- package/dist/mutations/settings/revoke-multi-session-options.js +11 -0
- package/dist/mutations/settings/revoke-session-options.d.ts +13 -0
- package/dist/mutations/settings/revoke-session-options.js +7 -0
- package/dist/mutations/settings/set-active-session-options.d.ts +13 -0
- package/dist/mutations/settings/set-active-session-options.js +11 -0
- package/dist/mutations/settings/unlink-account-options.d.ts +15 -0
- package/dist/mutations/settings/unlink-account-options.js +7 -0
- package/dist/mutations/settings/update-user-options.d.ts +1182 -0
- package/dist/mutations/settings/update-user-options.js +7 -0
- package/dist/queries/auth/session-options.d.ts +110 -0
- package/dist/queries/auth/session-options.js +7 -0
- package/dist/queries/auth-query-options.d.ts +29 -0
- package/dist/queries/auth-query-options.js +17 -0
- package/dist/queries/settings/account-info-options.d.ts +32 -0
- package/dist/queries/settings/account-info-options.js +12 -0
- package/dist/queries/settings/list-accounts-options.d.ts +53 -0
- package/dist/queries/settings/list-accounts-options.js +12 -0
- package/dist/queries/settings/list-device-sessions-options.d.ts +99 -0
- package/dist/queries/settings/list-device-sessions-options.js +12 -0
- package/dist/queries/settings/list-sessions-options.d.ts +54 -0
- package/dist/queries/settings/list-sessions-options.js +12 -0
- package/dist/queries/settings/list-user-passkeys-options.d.ts +18 -0
- package/dist/queries/settings/list-user-passkeys-options.js +12 -0
- package/package.json +11 -11
- package/src/components/auth/auth-provider.tsx +4 -6
- package/src/hooks/auth/use-authenticate.ts +8 -9
- package/src/hooks/auth/use-is-username-available.ts +31 -0
- package/src/hooks/auth/use-request-password-reset.ts +20 -11
- package/src/hooks/auth/use-reset-password.ts +20 -12
- package/src/hooks/auth/use-send-verification-email.ts +19 -11
- package/src/hooks/auth/use-session.ts +22 -17
- package/src/hooks/auth/use-sign-in-email.ts +24 -19
- package/src/hooks/auth/use-sign-in-magic-link.ts +19 -13
- package/src/hooks/auth/use-sign-in-passkey.ts +24 -18
- package/src/hooks/auth/use-sign-in-social.ts +19 -11
- package/src/hooks/auth/use-sign-in-username.ts +40 -0
- package/src/hooks/auth/use-sign-out.ts +20 -20
- package/src/hooks/auth/use-sign-up-email.ts +25 -21
- package/src/hooks/auth/use-user.ts +7 -9
- package/src/hooks/settings/use-account-info.ts +31 -21
- package/src/hooks/settings/use-add-passkey.ts +22 -17
- package/src/hooks/settings/use-change-email.ts +24 -20
- package/src/hooks/settings/use-change-password.ts +19 -11
- package/src/hooks/settings/use-delete-passkey.ts +21 -16
- package/src/hooks/settings/use-delete-user.ts +19 -11
- package/src/hooks/settings/use-link-social.ts +20 -10
- package/src/hooks/settings/use-list-accounts.ts +28 -16
- package/src/hooks/settings/use-list-device-sessions.ts +29 -22
- package/src/hooks/settings/use-list-sessions.ts +28 -15
- package/src/hooks/settings/use-list-user-passkeys.ts +28 -17
- package/src/hooks/settings/use-revoke-multi-session.ts +28 -19
- package/src/hooks/settings/use-revoke-session.ts +26 -18
- package/src/hooks/settings/use-set-active-session.ts +40 -28
- package/src/hooks/settings/use-unlink-account.ts +23 -17
- package/src/hooks/settings/use-update-user.ts +33 -27
- package/src/hooks/use-auth-mutation.ts +29 -0
- package/src/hooks/use-auth-query.ts +36 -0
- package/src/index.ts +4 -0
- package/src/lib/auth-config.ts +1 -1
- package/src/mutations/auth/is-username-available-options.ts +18 -0
- package/src/mutations/auth/request-password-reset-options.ts +14 -0
- package/src/mutations/auth/reset-password-options.ts +14 -0
- package/src/mutations/auth/send-verification-email-options.ts +14 -0
- package/src/mutations/auth/sign-in-email-options.ts +19 -0
- package/src/mutations/auth/sign-in-magic-link-options.ts +15 -0
- package/src/mutations/auth/sign-in-passkey-options.ts +15 -0
- package/src/mutations/auth/sign-in-social-options.ts +19 -0
- package/src/mutations/auth/sign-in-username-options.ts +15 -0
- package/src/mutations/auth/sign-out-options.ts +11 -0
- package/src/mutations/auth/sign-up-email-options.ts +15 -0
- package/src/mutations/auth-mutation-options.ts +49 -0
- package/src/mutations/settings/add-passkey-options.ts +15 -0
- package/src/mutations/settings/change-email-options.ts +11 -0
- package/src/mutations/settings/change-password-options.ts +14 -0
- package/src/mutations/settings/delete-passkey-options.ts +15 -0
- package/src/mutations/settings/delete-user-options.ts +11 -0
- package/src/mutations/settings/link-social-options.ts +11 -0
- package/src/mutations/settings/revoke-multi-session-options.ts +15 -0
- package/src/mutations/settings/revoke-session-options.ts +14 -0
- package/src/mutations/settings/set-active-session-options.ts +15 -0
- package/src/mutations/settings/unlink-account-options.ts +14 -0
- package/src/mutations/settings/update-user-options.ts +15 -0
- package/src/queries/auth/session-options.ts +18 -0
- package/src/queries/auth-query-options.ts +34 -0
- package/src/queries/settings/account-info-options.ts +25 -0
- package/src/queries/settings/list-accounts-options.ts +26 -0
- package/src/queries/settings/list-device-sessions-options.ts +24 -0
- package/src/queries/settings/list-sessions-options.ts +23 -0
- package/src/queries/settings/list-user-passkeys-options.ts +23 -0
- package/dist/hooks/auth/use-auth-mutation.d.ts +0 -18
- package/dist/hooks/auth/use-auth-mutation.js +0 -10
- package/dist/hooks/auth/use-auth-query.d.ts +0 -24
- package/dist/hooks/auth/use-auth-query.js +0 -10
- package/dist/lib/auth-config.js +0 -1
- package/src/hooks/auth/use-auth-mutation.ts +0 -56
- package/src/hooks/auth/use-auth-query.ts +0 -50
|
@@ -1,10 +1,17 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
+
});
|
|
10
15
|
}
|
|
16
|
+
//#endregion
|
|
17
|
+
export { t as Dropbox };
|
|
@@ -1,12 +1,20 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
+
});
|
|
12
18
|
}
|
|
19
|
+
//#endregion
|
|
20
|
+
export { n as Facebook };
|
|
@@ -1,13 +1,35 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
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
|
+
});
|
|
13
33
|
}
|
|
34
|
+
//#endregion
|
|
35
|
+
export { n as Figma };
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
+
});
|
|
12
15
|
}
|
|
16
|
+
//#endregion
|
|
17
|
+
export { t as GitHub };
|
|
@@ -1,10 +1,31 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
+
});
|
|
10
29
|
}
|
|
30
|
+
//#endregion
|
|
31
|
+
export { n as GitLab };
|
|
@@ -1,10 +1,40 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
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
|
+
});
|
|
10
38
|
}
|
|
39
|
+
//#endregion
|
|
40
|
+
export { n as Google };
|
|
@@ -1,10 +1,39 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
return (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 256 238", role: "img", "aria-label": "Hugging Face", ...props, children: [_jsx("path", { fill: "#fff", 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" }), _jsx("path", { fill: "#ff9d00", 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" }), _jsx("path", { fill: "#ffd21e", 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" }), _jsx("path", { fill: "#32343d", 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" }), _jsx("path", { fill: "#ff323d", 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" }), _jsx("path", { fill: "#ffad03", 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" })] }));
|
|
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
|
+
});
|
|
10
37
|
}
|
|
38
|
+
//#endregion
|
|
39
|
+
export { n as HuggingFace };
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
export { Apple } from
|
|
2
|
-
export { Atlassian } from
|
|
3
|
-
export { Cognito } from
|
|
4
|
-
export { Discord } from
|
|
5
|
-
export { Dropbox } from
|
|
6
|
-
export { Facebook } from
|
|
7
|
-
export { Figma } from
|
|
8
|
-
export { GitHub } from
|
|
9
|
-
export { GitLab } from
|
|
10
|
-
export { Google } from
|
|
11
|
-
export { HuggingFace } from
|
|
12
|
-
export { Kakao } from
|
|
13
|
-
export { Kick } from
|
|
14
|
-
export { Line } from
|
|
15
|
-
export { Linear } from
|
|
16
|
-
export { LinkedIn } from
|
|
17
|
-
export { Microsoft } from
|
|
18
|
-
export { Naver } from
|
|
19
|
-
export { Notion } from
|
|
20
|
-
export { Paybin } from
|
|
21
|
-
export { PayPal } from
|
|
22
|
-
export { Polar } from
|
|
23
|
-
export { Railway } from
|
|
24
|
-
export { Reddit } from
|
|
25
|
-
export { Roblox } from
|
|
26
|
-
export { Salesforce } from
|
|
27
|
-
export { Slack } from
|
|
28
|
-
export { Spotify } from
|
|
29
|
-
export { TikTok } from
|
|
30
|
-
export { Twitch } from
|
|
31
|
-
export { Vercel } from
|
|
32
|
-
export { VK } from
|
|
33
|
-
export { WeChat } from
|
|
34
|
-
export { X } from
|
|
35
|
-
export { Zoom } from
|
|
1
|
+
export { Apple } from './apple';
|
|
2
|
+
export { Atlassian } from './atlassian';
|
|
3
|
+
export { Cognito } from './cognito';
|
|
4
|
+
export { Discord } from './discord';
|
|
5
|
+
export { Dropbox } from './dropbox';
|
|
6
|
+
export { Facebook } from './facebook';
|
|
7
|
+
export { Figma } from './figma';
|
|
8
|
+
export { GitHub } from './github';
|
|
9
|
+
export { GitLab } from './gitlab';
|
|
10
|
+
export { Google } from './google';
|
|
11
|
+
export { HuggingFace } from './huggingface';
|
|
12
|
+
export { Kakao } from './kakao';
|
|
13
|
+
export { Kick } from './kick';
|
|
14
|
+
export { Line } from './line';
|
|
15
|
+
export { Linear } from './linear';
|
|
16
|
+
export { LinkedIn } from './linkedin';
|
|
17
|
+
export { Microsoft } from './microsoft';
|
|
18
|
+
export { Naver } from './naver';
|
|
19
|
+
export { Notion } from './notion';
|
|
20
|
+
export { Paybin } from './paybin';
|
|
21
|
+
export { PayPal } from './paypal';
|
|
22
|
+
export { Polar } from './polar';
|
|
23
|
+
export { Railway } from './railway';
|
|
24
|
+
export { Reddit } from './reddit';
|
|
25
|
+
export { Roblox } from './roblox';
|
|
26
|
+
export { Salesforce } from './salesforce';
|
|
27
|
+
export { Slack } from './slack';
|
|
28
|
+
export { Spotify } from './spotify';
|
|
29
|
+
export { TikTok } from './tiktok';
|
|
30
|
+
export { Twitch } from './twitch';
|
|
31
|
+
export { Vercel } from './vercel';
|
|
32
|
+
export { VK } from './vk';
|
|
33
|
+
export { WeChat } from './wechat';
|
|
34
|
+
export { X } from './x';
|
|
35
|
+
export { Zoom } from './zoom';
|
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
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,12 +1,17 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
+
});
|
|
12
15
|
}
|
|
16
|
+
//#endregion
|
|
17
|
+
export { t as Kakao };
|