@depup/nextra 4.6.1-depup.0
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/LICENSE +21 -0
- package/README.md +56 -0
- package/changes.json +110 -0
- package/dist/client/components/banner/close-banner-button.d.ts +8 -0
- package/dist/client/components/banner/close-banner-button.js +45 -0
- package/dist/client/components/banner/index.client.d.ts +5 -0
- package/dist/client/components/banner/index.client.js +46 -0
- package/dist/client/components/banner/index.d.ts +51 -0
- package/dist/client/components/banner/index.js +93 -0
- package/dist/client/components/bleed.d.ts +63 -0
- package/dist/client/components/bleed.js +54 -0
- package/dist/client/components/button.d.ts +9 -0
- package/dist/client/components/button.js +55 -0
- package/dist/client/components/callout.d.ts +136 -0
- package/dist/client/components/callout.js +99 -0
- package/dist/client/components/cards.d.ts +104 -0
- package/dist/client/components/cards.js +132 -0
- package/dist/client/components/collapse.d.ts +12 -0
- package/dist/client/components/collapse.js +143 -0
- package/dist/client/components/file-tree/file.d.ts +9 -0
- package/dist/client/components/file-tree/file.js +43 -0
- package/dist/client/components/file-tree/folder.d.ts +12 -0
- package/dist/client/components/file-tree/folder.js +94 -0
- package/dist/client/components/file-tree/index.d.ts +57 -0
- package/dist/client/components/file-tree/index.js +12 -0
- package/dist/client/components/file-tree/tree.d.ts +5 -0
- package/dist/client/components/file-tree/tree.js +41 -0
- package/dist/client/components/head.d.ts +139 -0
- package/dist/client/components/head.js +202 -0
- package/dist/client/components/image-zoom.d.ts +6 -0
- package/dist/client/components/image-zoom.js +79 -0
- package/dist/client/components/index.d.ts +56 -0
- package/dist/client/components/index.js +42 -0
- package/dist/client/components/playground.d.ts +90 -0
- package/dist/client/components/playground.js +103 -0
- package/dist/client/components/popup/index.client.d.ts +7 -0
- package/dist/client/components/popup/index.client.js +83 -0
- package/dist/client/components/popup/index.d.ts +12 -0
- package/dist/client/components/popup/index.js +11 -0
- package/dist/client/components/search.d.ts +88 -0
- package/dist/client/components/search.js +426 -0
- package/dist/client/components/select.d.ts +19 -0
- package/dist/client/components/select.js +109 -0
- package/dist/client/components/skip-nav/index.client.d.ts +5 -0
- package/dist/client/components/skip-nav/index.client.js +45 -0
- package/dist/client/components/skip-nav/index.d.ts +6 -0
- package/dist/client/components/skip-nav/index.js +24 -0
- package/dist/client/components/steps.d.ts +64 -0
- package/dist/client/components/steps.js +74 -0
- package/dist/client/components/tabs/index.client.d.ts +21 -0
- package/dist/client/components/tabs/index.client.js +243 -0
- package/dist/client/components/tabs/index.d.ts +53 -0
- package/dist/client/components/tabs/index.js +9 -0
- package/dist/client/evaluate.d.ts +30 -0
- package/dist/client/evaluate.js +17 -0
- package/dist/client/hocs/index.d.ts +4 -0
- package/dist/client/hocs/index.js +6 -0
- package/dist/client/hocs/with-github-alert.d.ts +11 -0
- package/dist/client/hocs/with-github-alert.js +30 -0
- package/dist/client/hocs/with-icons.d.ts +6 -0
- package/dist/client/hocs/with-icons.js +76 -0
- package/dist/client/hooks/index.d.ts +4 -0
- package/dist/client/hooks/index.js +10 -0
- package/dist/client/hooks/use-copy.d.ts +9 -0
- package/dist/client/hooks/use-copy.js +77 -0
- package/dist/client/hooks/use-fs-route.d.ts +3 -0
- package/dist/client/hooks/use-fs-route.js +20 -0
- package/dist/client/hooks/use-hash.d.ts +3 -0
- package/dist/client/hooks/use-hash.js +20 -0
- package/dist/client/hooks/use-mounted.d.ts +3 -0
- package/dist/client/hooks/use-mounted.js +13 -0
- package/dist/client/icons/arrow-right.d.ts +5 -0
- package/dist/client/icons/arrow-right.js +24 -0
- package/dist/client/icons/chatgpt.d.ts +2 -0
- package/dist/client/icons/chatgpt.js +24 -0
- package/dist/client/icons/check.d.ts +2 -0
- package/dist/client/icons/check.js +24 -0
- package/dist/client/icons/claude.d.ts +2 -0
- package/dist/client/icons/claude.js +81 -0
- package/dist/client/icons/copy.d.ts +2 -0
- package/dist/client/icons/copy.js +31 -0
- package/dist/client/icons/cpp.d.ts +2 -0
- package/dist/client/icons/cpp.js +24 -0
- package/dist/client/icons/cross-circled.d.ts +2 -0
- package/dist/client/icons/cross-circled.js +24 -0
- package/dist/client/icons/csharp.d.ts +2 -0
- package/dist/client/icons/csharp.js +24 -0
- package/dist/client/icons/css.d.ts +2 -0
- package/dist/client/icons/css.js +24 -0
- package/dist/client/icons/discord.d.ts +2 -0
- package/dist/client/icons/discord.js +24 -0
- package/dist/client/icons/expand.d.ts +2 -0
- package/dist/client/icons/expand.js +31 -0
- package/dist/client/icons/file.d.ts +2 -0
- package/dist/client/icons/file.js +24 -0
- package/dist/client/icons/folder-open.d.ts +2 -0
- package/dist/client/icons/folder-open.js +24 -0
- package/dist/client/icons/folder.d.ts +2 -0
- package/dist/client/icons/folder.js +24 -0
- package/dist/client/icons/github-caution.d.ts +2 -0
- package/dist/client/icons/github-caution.js +24 -0
- package/dist/client/icons/github-important.d.ts +2 -0
- package/dist/client/icons/github-important.js +24 -0
- package/dist/client/icons/github-note.d.ts +2 -0
- package/dist/client/icons/github-note.js +24 -0
- package/dist/client/icons/github-tip.d.ts +2 -0
- package/dist/client/icons/github-tip.js +24 -0
- package/dist/client/icons/github-warning.d.ts +2 -0
- package/dist/client/icons/github-warning.js +24 -0
- package/dist/client/icons/github.d.ts +2 -0
- package/dist/client/icons/github.js +24 -0
- package/dist/client/icons/globe.d.ts +2 -0
- package/dist/client/icons/globe.js +24 -0
- package/dist/client/icons/go.d.ts +2 -0
- package/dist/client/icons/go.js +46 -0
- package/dist/client/icons/graphql.d.ts +2 -0
- package/dist/client/icons/graphql.js +56 -0
- package/dist/client/icons/index.d.ts +2 -0
- package/dist/client/icons/index.js +92 -0
- package/dist/client/icons/javascript.d.ts +2 -0
- package/dist/client/icons/javascript.js +24 -0
- package/dist/client/icons/json.d.ts +2 -0
- package/dist/client/icons/json.js +41 -0
- package/dist/client/icons/link-arrow.d.ts +2 -0
- package/dist/client/icons/link-arrow.js +31 -0
- package/dist/client/icons/link.d.ts +2 -0
- package/dist/client/icons/link.js +24 -0
- package/dist/client/icons/markdown.d.ts +2 -0
- package/dist/client/icons/markdown.js +24 -0
- package/dist/client/icons/mdx.d.ts +2 -0
- package/dist/client/icons/mdx.js +24 -0
- package/dist/client/icons/menu.d.ts +2 -0
- package/dist/client/icons/menu.js +36 -0
- package/dist/client/icons/moon.d.ts +2 -0
- package/dist/client/icons/moon.js +24 -0
- package/dist/client/icons/move.d.ts +2 -0
- package/dist/client/icons/move.js +24 -0
- package/dist/client/icons/python.d.ts +2 -0
- package/dist/client/icons/python.js +31 -0
- package/dist/client/icons/react.d.ts +2 -0
- package/dist/client/icons/react.js +38 -0
- package/dist/client/icons/rust.d.ts +2 -0
- package/dist/client/icons/rust.js +31 -0
- package/dist/client/icons/spinner.d.ts +2 -0
- package/dist/client/icons/spinner.js +31 -0
- package/dist/client/icons/sun.d.ts +2 -0
- package/dist/client/icons/sun.js +24 -0
- package/dist/client/icons/svelte.d.ts +2 -0
- package/dist/client/icons/svelte.js +31 -0
- package/dist/client/icons/terminal.d.ts +2 -0
- package/dist/client/icons/terminal.js +24 -0
- package/dist/client/icons/terraform.d.ts +2 -0
- package/dist/client/icons/terraform.js +24 -0
- package/dist/client/icons/typescript.d.ts +2 -0
- package/dist/client/icons/typescript.js +24 -0
- package/dist/client/icons/word-wrap.d.ts +2 -0
- package/dist/client/icons/word-wrap.js +24 -0
- package/dist/client/icons/x.d.ts +2 -0
- package/dist/client/icons/x.js +24 -0
- package/dist/client/mdx-components/anchor.d.ts +10 -0
- package/dist/client/mdx-components/anchor.js +109 -0
- package/dist/client/mdx-components/code.d.ts +7 -0
- package/dist/client/mdx-components/code.js +52 -0
- package/dist/client/mdx-components/details.d.ts +5 -0
- package/dist/client/mdx-components/details.js +166 -0
- package/dist/client/mdx-components/image.d.ts +28 -0
- package/dist/client/mdx-components/image.js +39 -0
- package/dist/client/mdx-components/index.d.ts +11 -0
- package/dist/client/mdx-components/index.js +16 -0
- package/dist/client/mdx-components/pre/copy-to-clipboard.d.ts +5 -0
- package/dist/client/mdx-components/pre/copy-to-clipboard.js +49 -0
- package/dist/client/mdx-components/pre/index.d.ts +16 -0
- package/dist/client/mdx-components/pre/index.js +156 -0
- package/dist/client/mdx-components/pre/toggle-word-wrap-button.d.ts +7 -0
- package/dist/client/mdx-components/pre/toggle-word-wrap-button.js +31 -0
- package/dist/client/mdx-components/summary.d.ts +5 -0
- package/dist/client/mdx-components/summary.js +80 -0
- package/dist/client/mdx-components/table.d.ts +57 -0
- package/dist/client/mdx-components/table.js +95 -0
- package/dist/client/mdx-components.d.ts +89 -0
- package/dist/client/mdx-components.js +15 -0
- package/dist/client/mdx-remote.d.ts +62 -0
- package/dist/client/mdx-remote.js +36 -0
- package/dist/client/normalize-pages.d.ts +84 -0
- package/dist/client/normalize-pages.js +232 -0
- package/dist/client/package.json +1 -0
- package/dist/client/pages.d.ts +131 -0
- package/dist/client/pages.js +39 -0
- package/dist/client/remove-links.d.ts +6 -0
- package/dist/client/remove-links.js +35 -0
- package/dist/client/setup-page.d.ts +18 -0
- package/dist/client/setup-page.js +14 -0
- package/dist/server/compile-metadata.d.ts +12 -0
- package/dist/server/compile-metadata.js +39 -0
- package/dist/server/compile.d.ts +39 -0
- package/dist/server/compile.js +158 -0
- package/dist/server/constants.d.ts +15 -0
- package/dist/server/constants.js +22 -0
- package/dist/server/fetch-filepaths-from-github.d.ts +10 -0
- package/dist/server/fetch-filepaths-from-github.js +36 -0
- package/dist/server/index.d.ts +39 -0
- package/dist/server/index.js +203 -0
- package/dist/server/loader.d.ts +18 -0
- package/dist/server/loader.js +155 -0
- package/dist/server/locales.d.ts +22 -0
- package/dist/server/locales.js +38 -0
- package/dist/server/page-map/find-meta-and-page-file-paths.d.ts +8 -0
- package/dist/server/page-map/find-meta-and-page-file-paths.js +32 -0
- package/dist/server/page-map/get.d.ts +50 -0
- package/dist/server/page-map/get.js +28 -0
- package/dist/server/page-map/index-page.d.ts +21 -0
- package/dist/server/page-map/index-page.js +57 -0
- package/dist/server/page-map/index.d.ts +26 -0
- package/dist/server/page-map/index.js +24 -0
- package/dist/server/page-map/merge-meta-with-page-map.d.ts +17 -0
- package/dist/server/page-map/merge-meta-with-page-map.js +74 -0
- package/dist/server/page-map/normalize.d.ts +17 -0
- package/dist/server/page-map/normalize.js +122 -0
- package/dist/server/page-map/placeholder.d.ts +2 -0
- package/dist/server/page-map/placeholder.js +0 -0
- package/dist/server/page-map/to-ast.d.ts +18 -0
- package/dist/server/page-map/to-ast.js +47 -0
- package/dist/server/page-map/to-js.d.ts +21 -0
- package/dist/server/page-map/to-js.js +72 -0
- package/dist/server/page-map/to-page-map.d.ts +26 -0
- package/dist/server/page-map/to-page-map.js +101 -0
- package/dist/server/recma-plugins/index.d.ts +3 -0
- package/dist/server/recma-plugins/index.js +4 -0
- package/dist/server/recma-plugins/recma-rewrite.d.ts +11 -0
- package/dist/server/recma-plugins/recma-rewrite.js +98 -0
- package/dist/server/rehype-plugins/index.d.ts +18 -0
- package/dist/server/rehype-plugins/index.js +16 -0
- package/dist/server/rehype-plugins/rehype-better-react-mathjax.d.ts +24 -0
- package/dist/server/rehype-plugins/rehype-better-react-mathjax.js +96 -0
- package/dist/server/rehype-plugins/rehype-extract-toc-content.d.ts +6 -0
- package/dist/server/rehype-plugins/rehype-extract-toc-content.js +119 -0
- package/dist/server/rehype-plugins/rehype-twoslash-popup.d.ts +6 -0
- package/dist/server/rehype-plugins/rehype-twoslash-popup.js +50 -0
- package/dist/server/rehype-plugins/rehype.d.ts +21 -0
- package/dist/server/rehype-plugins/rehype.js +84 -0
- package/dist/server/remark-plugins/index.d.ts +15 -0
- package/dist/server/remark-plugins/index.js +26 -0
- package/dist/server/remark-plugins/remark-assign-frontmatter.d.ts +10 -0
- package/dist/server/remark-plugins/remark-assign-frontmatter.js +24 -0
- package/dist/server/remark-plugins/remark-custom-heading-id.d.ts +9 -0
- package/dist/server/remark-plugins/remark-custom-heading-id.js +18 -0
- package/dist/server/remark-plugins/remark-export-only-metadata.d.ts +6 -0
- package/dist/server/remark-plugins/remark-export-only-metadata.js +18 -0
- package/dist/server/remark-plugins/remark-export-source-code.d.ts +6 -0
- package/dist/server/remark-plugins/remark-export-source-code.js +35 -0
- package/dist/server/remark-plugins/remark-headings.d.ts +12 -0
- package/dist/server/remark-plugins/remark-headings.js +133 -0
- package/dist/server/remark-plugins/remark-link-rewrite.d.ts +11 -0
- package/dist/server/remark-plugins/remark-link-rewrite.js +12 -0
- package/dist/server/remark-plugins/remark-mdx-disable-explicit-jsx.d.ts +10 -0
- package/dist/server/remark-plugins/remark-mdx-disable-explicit-jsx.js +10 -0
- package/dist/server/remark-plugins/remark-mdx-frontmatter.d.ts +6 -0
- package/dist/server/remark-plugins/remark-mdx-frontmatter.js +37 -0
- package/dist/server/remark-plugins/remark-mdx-title.d.ts +10 -0
- package/dist/server/remark-plugins/remark-mdx-title.js +53 -0
- package/dist/server/remark-plugins/remark-remove-imports.d.ts +6 -0
- package/dist/server/remark-plugins/remark-remove-imports.js +12 -0
- package/dist/server/remark-plugins/remark-static-image.d.ts +6 -0
- package/dist/server/remark-plugins/remark-static-image.js +107 -0
- package/dist/server/schemas.d.ts +352 -0
- package/dist/server/schemas.js +240 -0
- package/dist/server/tsdoc/base.d.ts +38 -0
- package/dist/server/tsdoc/base.js +284 -0
- package/dist/server/tsdoc/index.d.ts +6 -0
- package/dist/server/tsdoc/index.js +10 -0
- package/dist/server/tsdoc/tsdoc.d.ts +102 -0
- package/dist/server/tsdoc/tsdoc.js +262 -0
- package/dist/server/tsdoc/types.d.ts +64 -0
- package/dist/server/tsdoc/types.js +0 -0
- package/dist/server/tsdoc/zod-to-ts.d.ts +5 -0
- package/dist/server/tsdoc/zod-to-ts.js +107 -0
- package/dist/server/twoslash.d.ts +6 -0
- package/dist/server/twoslash.js +60 -0
- package/dist/server/utils.d.ts +12 -0
- package/dist/server/utils.js +45 -0
- package/dist/types.d.ts +128 -0
- package/dist/types.generated.d.ts +203 -0
- package/dist/types.generated.js +0 -0
- package/dist/types.js +0 -0
- package/loader.cjs +24 -0
- package/package.json +265 -0
- package/styles/cards.css +24 -0
- package/styles/code-block.css +266 -0
- package/styles/default.css +55 -0
- package/styles/react-medium-image-zoom.css +101 -0
- package/styles/scrollbar.css +14 -0
- package/styles/steps.css +22 -0
- package/styles/subheading-anchor.css +25 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGithubCaution = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M4.47.22A.749.749 0 0 1 5 0h6c.199 0 .389.079.53.22l4.25 4.25c.141.14.22.331.22.53v6a.749.749 0 0 1-.22.53l-4.25 4.25A.749.749 0 0 1 11 16H5a.749.749 0 0 1-.53-.22L.22 11.53A.749.749 0 0 1 0 11V5c0-.199.079-.389.22-.53Zm.84 1.28L1.5 5.31v5.38l3.81 3.81h5.38l3.81-3.81V5.31L10.69 1.5ZM8 4a.75.75 0 0 1 .75.75v3.5a.75.75 0 0 1-1.5 0v-3.5A.75.75 0 0 1 8 4Zm0 8a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGithubCaution as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGithubImportant = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M0 1.75C0 .784.784 0 1.75 0h12.5C15.216 0 16 .784 16 1.75v9.5A1.75 1.75 0 0 1 14.25 13H8.06l-2.573 2.573A1.458 1.458 0 0 1 3 14.543V13H1.75A1.75 1.75 0 0 1 0 11.25Zm1.75-.25a.25.25 0 0 0-.25.25v9.5c0 .138.112.25.25.25h2a.75.75 0 0 1 .75.75v2.19l2.72-2.72a.749.749 0 0 1 .53-.22h6.5a.25.25 0 0 0 .25-.25v-9.5a.25.25 0 0 0-.25-.25Zm7 2.25v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 9a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGithubImportant as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGithubNote = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8Zm8-6.5a6.5 6.5 0 1 0 0 13 6.5 6.5 0 0 0 0-13ZM6.5 7.75A.75.75 0 0 1 7.25 7h1a.75.75 0 0 1 .75.75v2.75h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-2h-.25a.75.75 0 0 1-.75-.75ZM8 6a1 1 0 1 1 0-2 1 1 0 0 1 0 2Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGithubNote as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGithubTip = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M8 1.5c-2.363 0-4 1.69-4 3.75 0 .984.424 1.625.984 2.304l.214.253c.223.264.47.556.673.848.284.411.537.896.621 1.49a.75.75 0 0 1-1.484.211c-.04-.282-.163-.547-.37-.847a8.456 8.456 0 0 0-.542-.68c-.084-.1-.173-.205-.268-.32C3.201 7.75 2.5 6.766 2.5 5.25 2.5 2.31 4.863 0 8 0s5.5 2.31 5.5 5.25c0 1.516-.701 2.5-1.328 3.259-.095.115-.184.22-.268.319-.207.245-.383.453-.541.681-.208.3-.33.565-.37.847a.751.751 0 0 1-1.485-.212c.084-.593.337-1.078.621-1.489.203-.292.45-.584.673-.848.075-.088.147-.173.213-.253.561-.679.985-1.32.985-2.304 0-2.06-1.637-3.75-4-3.75ZM5.75 12h4.5a.75.75 0 0 1 0 1.5h-4.5a.75.75 0 0 1 0-1.5ZM6 15.25a.75.75 0 0 1 .75-.75h2.5a.75.75 0 0 1 0 1.5h-2.5a.75.75 0 0 1-.75-.75Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGithubTip as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGithubWarning = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M6.457 1.047c.659-1.234 2.427-1.234 3.086 0l6.082 11.378A1.75 1.75 0 0 1 14.082 15H1.918a1.75 1.75 0 0 1-1.543-2.575Zm1.763.707a.25.25 0 0 0-.44 0L1.698 13.132a.25.25 0 0 0 .22.368h12.164a.25.25 0 0 0 .22-.368Zm.53 3.996v2.5a.75.75 0 0 1-1.5 0v-2.5a.75.75 0 0 1 1.5 0ZM9 11a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 16 16", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGithubWarning as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGithub = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M12 3C7.0275 3 3 7.12937 3 12.2276C3 16.3109 5.57625 19.7597 9.15374 20.9824C9.60374 21.0631 9.77249 20.7863 9.77249 20.5441C9.77249 20.3249 9.76125 19.5982 9.76125 18.8254C7.5 19.2522 6.915 18.2602 6.735 17.7412C6.63375 17.4759 6.19499 16.6569 5.8125 16.4378C5.4975 16.2647 5.0475 15.838 5.80124 15.8264C6.51 15.8149 7.01625 16.4954 7.18499 16.7723C7.99499 18.1679 9.28875 17.7758 9.80625 17.5335C9.885 16.9337 10.1212 16.53 10.38 16.2993C8.3775 16.0687 6.285 15.2728 6.285 11.7432C6.285 10.7397 6.63375 9.9092 7.20749 9.26326C7.1175 9.03257 6.8025 8.08674 7.2975 6.81794C7.2975 6.81794 8.05125 6.57571 9.77249 7.76377C10.4925 7.55615 11.2575 7.45234 12.0225 7.45234C12.7875 7.45234 13.5525 7.55615 14.2725 7.76377C15.9937 6.56418 16.7475 6.81794 16.7475 6.81794C17.2424 8.08674 16.9275 9.03257 16.8375 9.26326C17.4113 9.9092 17.76 10.7281 17.76 11.7432C17.76 15.2843 15.6563 16.0687 13.6537 16.2993C13.98 16.5877 14.2613 17.1414 14.2613 18.0065C14.2613 19.2407 14.25 20.2326 14.25 20.5441C14.25 20.7863 14.4188 21.0746 14.8688 20.9824C16.6554 20.364 18.2079 19.1866 19.3078 17.6162C20.4077 16.0457 20.9995 14.1611 21 12.2276C21 7.12937 16.9725 3 12 3Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "3 3 18 18", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGithub as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGlobe = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { fillRule: "evenodd", d: "M4.083 9h1.946c.089-1.546.383-2.97.837-4.118A6.004 6.004 0 004.083 9zM10 2a8 8 0 100 16 8 8 0 000-16zm0 2c-.076 0-.232.032-.465.262-.238.234-.497.623-.737 1.182-.389.907-.673 2.142-.766 3.556h3.936c-.093-1.414-.377-2.649-.766-3.556-.24-.56-.5-.948-.737-1.182C10.232 4.032 10.076 4 10 4zm3.971 5c-.089-1.546-.383-2.97-.837-4.118A6.004 6.004 0 0115.917 9h-1.946zm-2.003 2H8.032c.093 1.414.377 2.649.766 3.556.24.56.5.948.737 1.182.233.23.389.262.465.262.076 0 .232-.032.465-.262.238-.234.498-.623.737-1.182.389-.907.673-2.142.766-3.556zm1.166 4.118c.454-1.147.748-2.572.837-4.118h1.946a6.004 6.004 0 01-2.783 4.118zm-6.268 0C6.412 13.97 6.118 12.546 6.03 11H4.083a6.004 6.004 0 002.783 4.118z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "2 2 16 16", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgGlobe as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGo = (props) => {
|
|
4
|
+
const $ = _c(7);
|
|
5
|
+
let t0;
|
|
6
|
+
let t1;
|
|
7
|
+
let t2;
|
|
8
|
+
let t3;
|
|
9
|
+
let t4;
|
|
10
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
11
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M16.2 24.1C15.8 24.1 15.7 23.9 15.9 23.6L18 20.9C18.2 20.6 18.7 20.4 19.1 20.4H54.8C55.2 20.4 55.3 20.7 55.1 21L53.4 23.6C53.2 23.9 52.7 24.2 52.4 24.2L16.2 24.1Z" });
|
|
12
|
+
t1 = /* @__PURE__ */ jsx("path", { d: "M1.10001 33.3C0.700013 33.3 0.600012 33.1 0.800012 32.8L2.90001 30.1C3.10001 29.8 3.60001 29.6 4.00001 29.6H49.6C50 29.6 50.2 29.9 50.1 30.2L49.3 32.6C49.2 33 48.8 33.2 48.4 33.2L1.10001 33.3Z" });
|
|
13
|
+
t2 = /* @__PURE__ */ jsx("path", { d: "M25.3 42.5C24.9 42.5 24.8 42.2 25 41.9L26.4 39.4C26.6 39.1 27 38.8 27.4 38.8H47.4C47.8 38.8 48 39.1 48 39.5L47.8 41.9C47.8 42.3 47.4 42.6 47.1 42.6L25.3 42.5Z" });
|
|
14
|
+
t3 = /* @__PURE__ */ jsx("path", { d: "M129.1 22.3C122.8 23.9 118.5 25.1 112.3 26.7C110.8 27.1 110.7 27.2 109.4 25.7C107.9 24 106.8 22.9 104.7 21.9C98.4 18.8 92.3 19.7 86.6 23.4C79.8 27.8 76.3 34.3 76.4 42.4C76.5 50.4 82 57 89.9 58.1C96.7 59 102.4 56.6 106.9 51.5C107.8 50.4 108.6 49.2 109.6 47.8C106 47.8 101.5 47.8 90.3 47.8C88.2 47.8 87.7 46.5 88.4 44.8C89.7 41.7 92.1 36.5 93.5 33.9C93.8 33.3 94.5 32.3 96 32.3C101.1 32.3 119.9 32.3 132.4 32.3C132.2 35 132.2 37.7 131.8 40.4C130.7 47.6 128 54.2 123.6 60C116.4 69.5 107 75.4 95.1 77C85.3 78.3 76.2 76.4 68.2 70.4C60.8 64.8 56.6 57.4 55.5 48.2C54.2 37.3 57.4 27.5 64 18.9C71.1 9.59999 80.5 3.69999 92 1.59999C101.4 -0.100012 110.4 0.99999 118.5 6.49999C123.8 9.99999 127.6 14.8 130.1 20.6C130.7 21.5 130.3 22 129.1 22.3Z" });
|
|
15
|
+
t4 = /* @__PURE__ */ jsx("path", { d: "M162.2 77.6C153.1 77.4 144.8 74.8 137.8 68.8C131.9 63.7 128.2 57.2 127 49.5C125.2 38.2 128.3 28.2 135.1 19.3C142.4 9.7 151.2 4.7 163.1 2.6C173.3 0.8 182.9 1.8 191.6 7.7C199.5 13.1 204.4 20.4 205.7 30C207.4 43.5 203.5 54.5 194.2 63.9C187.6 70.6 179.5 74.8 170.2 76.7C167.5 77.2 164.8 77.3 162.2 77.6ZM186 37.2C185.9 35.9 185.9 34.9 185.7 33.9C183.9 24 174.8 18.4 165.3 20.6C156 22.7 150 28.6 147.8 38C146 45.8 149.8 53.7 157 56.9C162.5 59.3 168 59 173.3 56.3C181.2 52.2 185.5 45.8 186 37.2Z" });
|
|
16
|
+
$[0] = t0;
|
|
17
|
+
$[1] = t1;
|
|
18
|
+
$[2] = t2;
|
|
19
|
+
$[3] = t3;
|
|
20
|
+
$[4] = t4;
|
|
21
|
+
} else {
|
|
22
|
+
t0 = $[0];
|
|
23
|
+
t1 = $[1];
|
|
24
|
+
t2 = $[2];
|
|
25
|
+
t3 = $[3];
|
|
26
|
+
t4 = $[4];
|
|
27
|
+
}
|
|
28
|
+
let t5;
|
|
29
|
+
if ($[5] !== props) {
|
|
30
|
+
t5 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 207 78", fill: "currentColor", ...props, children: [
|
|
31
|
+
t0,
|
|
32
|
+
t1,
|
|
33
|
+
t2,
|
|
34
|
+
t3,
|
|
35
|
+
t4
|
|
36
|
+
] });
|
|
37
|
+
$[5] = props;
|
|
38
|
+
$[6] = t5;
|
|
39
|
+
} else {
|
|
40
|
+
t5 = $[6];
|
|
41
|
+
}
|
|
42
|
+
return t5;
|
|
43
|
+
};
|
|
44
|
+
export {
|
|
45
|
+
SvgGo as ReactComponent
|
|
46
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgGraphql = (props) => {
|
|
4
|
+
const $ = _c(9);
|
|
5
|
+
let t0;
|
|
6
|
+
let t1;
|
|
7
|
+
let t2;
|
|
8
|
+
let t3;
|
|
9
|
+
let t4;
|
|
10
|
+
let t5;
|
|
11
|
+
let t6;
|
|
12
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
13
|
+
t0 = /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M12 1.65674L20.9575 6.82836V17.1716L12 22.3432L3.04248 17.1716V6.82836L12 1.65674ZM4.04753 7.40863V15.006L10.6271 3.60994L4.04753 7.40863ZM12 3.24206L4.4154 16.379H19.5846L12 3.24206ZM18.5796 17.384H5.42045L12 21.1827L18.5796 17.384ZM19.9525 15.006L13.3729 3.60994L19.9525 7.40863V15.006Z" });
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("path", { d: "M12 4.35381C13.1691 4.35381 14.1168 3.40609 14.1168 2.23701C14.1168 1.06793 13.1691 0.120209 12 0.120209C10.8309 0.120209 9.88319 1.06793 9.88319 2.23701C9.88319 3.40609 10.8309 4.35381 12 4.35381Z" });
|
|
15
|
+
t2 = /* @__PURE__ */ jsx("path", { d: "M20.455 9.23532C21.6241 9.23532 22.5718 8.2876 22.5718 7.11852C22.5718 5.94945 21.6241 5.00172 20.455 5.00172C19.2859 5.00172 18.3382 5.94945 18.3382 7.11852C18.3382 8.2876 19.2859 9.23532 20.455 9.23532Z" });
|
|
16
|
+
t3 = /* @__PURE__ */ jsx("path", { d: "M20.455 18.9983C21.6241 18.9983 22.5718 18.0506 22.5718 16.8815C22.5718 15.7124 21.6241 14.7647 20.455 14.7647C19.2859 14.7647 18.3382 15.7124 18.3382 16.8815C18.3382 18.0506 19.2859 18.9983 20.455 18.9983Z" });
|
|
17
|
+
t4 = /* @__PURE__ */ jsx("path", { d: "M12 23.8798C13.1691 23.8798 14.1168 22.9321 14.1168 21.763C14.1168 20.5939 13.1691 19.6462 12 19.6462C10.8309 19.6462 9.88319 20.5939 9.88319 21.763C9.88319 22.9321 10.8309 23.8798 12 23.8798Z" });
|
|
18
|
+
t5 = /* @__PURE__ */ jsx("path", { d: "M3.54382 18.9983C4.71289 18.9983 5.66062 18.0506 5.66062 16.8815C5.66062 15.7124 4.71289 14.7647 3.54382 14.7647C2.37474 14.7647 1.42702 15.7124 1.42702 16.8815C1.42702 18.0506 2.37474 18.9983 3.54382 18.9983Z" });
|
|
19
|
+
t6 = /* @__PURE__ */ jsx("path", { d: "M3.54382 9.23532C4.71289 9.23532 5.66062 8.2876 5.66062 7.11852C5.66062 5.94945 4.71289 5.00172 3.54382 5.00172C2.37474 5.00172 1.42702 5.94945 1.42702 7.11852C1.42702 8.2876 2.37474 9.23532 3.54382 9.23532Z" });
|
|
20
|
+
$[0] = t0;
|
|
21
|
+
$[1] = t1;
|
|
22
|
+
$[2] = t2;
|
|
23
|
+
$[3] = t3;
|
|
24
|
+
$[4] = t4;
|
|
25
|
+
$[5] = t5;
|
|
26
|
+
$[6] = t6;
|
|
27
|
+
} else {
|
|
28
|
+
t0 = $[0];
|
|
29
|
+
t1 = $[1];
|
|
30
|
+
t2 = $[2];
|
|
31
|
+
t3 = $[3];
|
|
32
|
+
t4 = $[4];
|
|
33
|
+
t5 = $[5];
|
|
34
|
+
t6 = $[6];
|
|
35
|
+
}
|
|
36
|
+
let t7;
|
|
37
|
+
if ($[7] !== props) {
|
|
38
|
+
t7 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: [
|
|
39
|
+
t0,
|
|
40
|
+
t1,
|
|
41
|
+
t2,
|
|
42
|
+
t3,
|
|
43
|
+
t4,
|
|
44
|
+
t5,
|
|
45
|
+
t6
|
|
46
|
+
] });
|
|
47
|
+
$[7] = props;
|
|
48
|
+
$[8] = t7;
|
|
49
|
+
} else {
|
|
50
|
+
t7 = $[8];
|
|
51
|
+
}
|
|
52
|
+
return t7;
|
|
53
|
+
};
|
|
54
|
+
export {
|
|
55
|
+
SvgGraphql as ReactComponent
|
|
56
|
+
};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { ReactComponent as ArrowRightIcon, ReactComponent as CPPIcon, ReactComponent as ChatGPTIcon, ReactComponent as CheckIcon, ReactComponent as ClaudeIcon, ReactComponent as CopyIcon, ReactComponent as CrossCircledIcon, ReactComponent as CsharpIcon, ReactComponent as CssIcon, ReactComponent as DiscordIcon, ReactComponent as ExpandIcon, ReactComponent as FileIcon, ReactComponent as FolderIcon, ReactComponent as FolderOpenIcon, ReactComponent as GitHubCautionIcon, ReactComponent as GitHubIcon, ReactComponent as GitHubImportantIcon, ReactComponent as GitHubNoteIcon, ReactComponent as GitHubTipIcon, ReactComponent as GitHubWarningIcon, ReactComponent as GlobeIcon, ReactComponent as GoIcon, ReactComponent as GraphQLIcon, ReactComponent as InformationCircleIcon, ReactComponent as JSONIcon, ReactComponent as JavaScriptIcon, ReactComponent as LinkArrowIcon, ReactComponent as LinkIcon, ReactComponent as MarkdownIcon, ReactComponent as MdxIcon, ReactComponent as MenuIcon, ReactComponent as MoonIcon, ReactComponent as MoveIcon, ReactComponent as PythonIcon, ReactComponent as ReactIcon, ReactComponent as RustIcon, ReactComponent as SpinnerIcon, ReactComponent as SunIcon, ReactComponent as SvelteIcon, ReactComponent as TerminalIcon, ReactComponent as TerraformIcon, ReactComponent as TypeScriptIcon, ReactComponent as WordWrapIcon, ReactComponent as XIcon } from './arrow-right.js';
|
|
2
|
+
import 'react';
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import { ReactComponent } from "./arrow-right";
|
|
2
|
+
import { ReactComponent as ReactComponent2 } from "./chatgpt";
|
|
3
|
+
import { ReactComponent as ReactComponent3 } from "./check";
|
|
4
|
+
import { ReactComponent as ReactComponent4 } from "./claude";
|
|
5
|
+
import { ReactComponent as ReactComponent5 } from "./copy";
|
|
6
|
+
import { ReactComponent as ReactComponent6 } from "./discord";
|
|
7
|
+
import { ReactComponent as ReactComponent7 } from "./expand";
|
|
8
|
+
import { ReactComponent as ReactComponent8 } from "./github";
|
|
9
|
+
import { ReactComponent as ReactComponent9 } from "./globe";
|
|
10
|
+
import { ReactComponent as ReactComponent10 } from "./go";
|
|
11
|
+
import { ReactComponent as ReactComponent11 } from "./menu";
|
|
12
|
+
import { ReactComponent as ReactComponent12 } from "./moon";
|
|
13
|
+
import { ReactComponent as ReactComponent13 } from "./spinner";
|
|
14
|
+
import { ReactComponent as ReactComponent14 } from "./sun";
|
|
15
|
+
import { ReactComponent as ReactComponent15 } from "./svelte";
|
|
16
|
+
import { ReactComponent as ReactComponent16 } from "./word-wrap";
|
|
17
|
+
import { ReactComponent as ReactComponent17 } from "./x";
|
|
18
|
+
import { ReactComponent as ReactComponent18 } from "./javascript";
|
|
19
|
+
import { ReactComponent as ReactComponent19 } from "./link-arrow";
|
|
20
|
+
import { ReactComponent as ReactComponent20 } from "./typescript";
|
|
21
|
+
import { ReactComponent as ReactComponent21 } from "./markdown";
|
|
22
|
+
import { ReactComponent as ReactComponent22 } from "./mdx";
|
|
23
|
+
import { ReactComponent as ReactComponent23 } from "./terminal";
|
|
24
|
+
import { ReactComponent as ReactComponent24 } from "./css";
|
|
25
|
+
import { ReactComponent as ReactComponent25 } from "./cpp";
|
|
26
|
+
import { ReactComponent as ReactComponent26 } from "./csharp";
|
|
27
|
+
import { ReactComponent as ReactComponent27 } from "./graphql";
|
|
28
|
+
import { ReactComponent as ReactComponent28 } from "./python";
|
|
29
|
+
import { ReactComponent as ReactComponent29 } from "./react";
|
|
30
|
+
import { ReactComponent as ReactComponent30 } from "./json";
|
|
31
|
+
import { ReactComponent as ReactComponent31 } from "./rust";
|
|
32
|
+
import { ReactComponent as ReactComponent32 } from "./terraform";
|
|
33
|
+
import { ReactComponent as ReactComponent33 } from "./move";
|
|
34
|
+
import { ReactComponent as ReactComponent34 } from "./cross-circled";
|
|
35
|
+
import { ReactComponent as ReactComponent35 } from "./file";
|
|
36
|
+
import { ReactComponent as ReactComponent36 } from "./folder";
|
|
37
|
+
import { ReactComponent as ReactComponent37 } from "./folder-open";
|
|
38
|
+
import { ReactComponent as ReactComponent38 } from "./link";
|
|
39
|
+
import {
|
|
40
|
+
ReactComponent as ReactComponent39,
|
|
41
|
+
ReactComponent as ReactComponent40
|
|
42
|
+
} from "./github-note";
|
|
43
|
+
import { ReactComponent as ReactComponent41 } from "./github-tip";
|
|
44
|
+
import { ReactComponent as ReactComponent42 } from "./github-important";
|
|
45
|
+
import { ReactComponent as ReactComponent43 } from "./github-warning";
|
|
46
|
+
import { ReactComponent as ReactComponent44 } from "./github-caution";
|
|
47
|
+
export {
|
|
48
|
+
ReactComponent as ArrowRightIcon,
|
|
49
|
+
ReactComponent25 as CPPIcon,
|
|
50
|
+
ReactComponent2 as ChatGPTIcon,
|
|
51
|
+
ReactComponent3 as CheckIcon,
|
|
52
|
+
ReactComponent4 as ClaudeIcon,
|
|
53
|
+
ReactComponent5 as CopyIcon,
|
|
54
|
+
ReactComponent34 as CrossCircledIcon,
|
|
55
|
+
ReactComponent26 as CsharpIcon,
|
|
56
|
+
ReactComponent24 as CssIcon,
|
|
57
|
+
ReactComponent6 as DiscordIcon,
|
|
58
|
+
ReactComponent7 as ExpandIcon,
|
|
59
|
+
ReactComponent35 as FileIcon,
|
|
60
|
+
ReactComponent36 as FolderIcon,
|
|
61
|
+
ReactComponent37 as FolderOpenIcon,
|
|
62
|
+
ReactComponent44 as GitHubCautionIcon,
|
|
63
|
+
ReactComponent8 as GitHubIcon,
|
|
64
|
+
ReactComponent42 as GitHubImportantIcon,
|
|
65
|
+
ReactComponent39 as GitHubNoteIcon,
|
|
66
|
+
ReactComponent41 as GitHubTipIcon,
|
|
67
|
+
ReactComponent43 as GitHubWarningIcon,
|
|
68
|
+
ReactComponent9 as GlobeIcon,
|
|
69
|
+
ReactComponent10 as GoIcon,
|
|
70
|
+
ReactComponent27 as GraphQLIcon,
|
|
71
|
+
ReactComponent40 as InformationCircleIcon,
|
|
72
|
+
ReactComponent30 as JSONIcon,
|
|
73
|
+
ReactComponent18 as JavaScriptIcon,
|
|
74
|
+
ReactComponent19 as LinkArrowIcon,
|
|
75
|
+
ReactComponent38 as LinkIcon,
|
|
76
|
+
ReactComponent21 as MarkdownIcon,
|
|
77
|
+
ReactComponent22 as MdxIcon,
|
|
78
|
+
ReactComponent11 as MenuIcon,
|
|
79
|
+
ReactComponent12 as MoonIcon,
|
|
80
|
+
ReactComponent33 as MoveIcon,
|
|
81
|
+
ReactComponent28 as PythonIcon,
|
|
82
|
+
ReactComponent29 as ReactIcon,
|
|
83
|
+
ReactComponent31 as RustIcon,
|
|
84
|
+
ReactComponent13 as SpinnerIcon,
|
|
85
|
+
ReactComponent14 as SunIcon,
|
|
86
|
+
ReactComponent15 as SvelteIcon,
|
|
87
|
+
ReactComponent23 as TerminalIcon,
|
|
88
|
+
ReactComponent32 as TerraformIcon,
|
|
89
|
+
ReactComponent20 as TypeScriptIcon,
|
|
90
|
+
ReactComponent16 as WordWrapIcon,
|
|
91
|
+
ReactComponent17 as XIcon
|
|
92
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgJavascript = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M21.8182 0H2.18182C0.976364 0 0 0.976364 0 2.18182V21.8182C0 23.0236 0.976364 24 2.18182 24H21.8182C23.0236 24 24 23.0236 24 21.8182V2.18182C24 0.976364 23.0236 0 21.8182 0ZM12 17.8691C12 19.8076 10.8109 20.8942 8.83636 20.8942C6.88582 20.8942 5.64327 19.7542 5.64327 17.9105H7.75636C7.76182 18.5945 8.16982 19.0265 8.80036 19.0265C9.44836 19.0265 9.79636 18.6185 9.79636 17.8505V11.9978H12V17.8691ZM17.9793 20.8942C15.7876 20.8942 14.4087 19.8622 14.3716 18.1931H16.4727C16.5262 18.8236 17.1556 19.2251 18.0687 19.2251C18.8913 19.2251 19.4564 18.8291 19.4564 18.2585C19.4564 17.7785 19.0778 17.52 18.0873 17.3225L16.9473 17.0945C15.3622 16.7945 14.5462 15.9305 14.5462 14.568C14.5462 12.8749 15.9033 11.7644 17.9913 11.7644C20.0204 11.7644 21.4244 12.8629 21.4604 14.4655H19.4258C19.3778 13.8535 18.7953 13.4269 18.0196 13.4269C17.2462 13.4269 16.7367 13.7935 16.7367 14.3695C16.7367 14.844 17.1207 15.12 18.0327 15.3L19.1476 15.516C20.8593 15.8465 21.6273 16.62 21.6273 17.9945C21.6284 19.8022 20.2484 20.8942 17.9793 20.8942Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 24 24", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgJavascript as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgJson = (props) => {
|
|
4
|
+
const $ = _c(6);
|
|
5
|
+
let t0;
|
|
6
|
+
let t1;
|
|
7
|
+
let t2;
|
|
8
|
+
let t3;
|
|
9
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
10
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M30 0V10H28L26 4V10H24V0H26L28 6V0H30Z" });
|
|
11
|
+
t1 = /* @__PURE__ */ jsx("path", { d: "M20.3335 10H17.6665C17.2247 9.9995 16.8011 9.82376 16.4887 9.51134C16.1762 9.19892 16.0005 8.77533 16 8.3335V1.6665C16.0005 1.22467 16.1762 0.801082 16.4887 0.488662C16.8011 0.176241 17.2247 0.000502876 17.6665 0H20.3335C20.7753 0.000502876 21.1989 0.176241 21.5113 0.488662C21.8238 0.801082 21.9995 1.22467 22 1.6665V8.3335C21.9995 8.77533 21.8238 9.19892 21.5113 9.51134C21.1989 9.82376 20.7753 9.9995 20.3335 10ZM18 8H20V2H18V8Z" });
|
|
12
|
+
t2 = /* @__PURE__ */ jsx("path", { d: "M12.3335 10H8V8H12V6H10C9.46973 5.99947 8.96133 5.78859 8.58637 5.41363C8.21141 5.03867 8.00053 4.53027 8 4V1.6665C8.0005 1.22467 8.17624 0.801082 8.48866 0.488662C8.80108 0.176241 9.22467 0.000502876 9.6665 0H14V2H10V4H12C12.5303 4.00053 13.0387 4.21141 13.4136 4.58637C13.7886 4.96133 13.9995 5.46973 14 6V8.3335C13.9995 8.77533 13.8238 9.19892 13.5113 9.51134C13.1989 9.82376 12.7753 9.9995 12.3335 10Z" });
|
|
13
|
+
t3 = /* @__PURE__ */ jsx("path", { d: "M4.3335 10H1.6665C1.22467 9.9995 0.801082 9.82376 0.488662 9.51134C0.176242 9.19892 0.000502876 8.77533 0 8.3335V6H2V8H4V0H6V8.3335C5.9995 8.77533 5.82376 9.19892 5.51134 9.51134C5.19892 9.82376 4.77533 9.9995 4.3335 10Z" });
|
|
14
|
+
$[0] = t0;
|
|
15
|
+
$[1] = t1;
|
|
16
|
+
$[2] = t2;
|
|
17
|
+
$[3] = t3;
|
|
18
|
+
} else {
|
|
19
|
+
t0 = $[0];
|
|
20
|
+
t1 = $[1];
|
|
21
|
+
t2 = $[2];
|
|
22
|
+
t3 = $[3];
|
|
23
|
+
}
|
|
24
|
+
let t4;
|
|
25
|
+
if ($[4] !== props) {
|
|
26
|
+
t4 = /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 30 10", fill: "currentColor", stroke: "none", ...props, children: [
|
|
27
|
+
t0,
|
|
28
|
+
t1,
|
|
29
|
+
t2,
|
|
30
|
+
t3
|
|
31
|
+
] });
|
|
32
|
+
$[4] = props;
|
|
33
|
+
$[5] = t4;
|
|
34
|
+
} else {
|
|
35
|
+
t4 = $[5];
|
|
36
|
+
}
|
|
37
|
+
return t4;
|
|
38
|
+
};
|
|
39
|
+
export {
|
|
40
|
+
SvgJson as ReactComponent
|
|
41
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgLinkArrow = (props) => {
|
|
4
|
+
const $ = _c(4);
|
|
5
|
+
let t0;
|
|
6
|
+
let t1;
|
|
7
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
8
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M7 17L17 7" });
|
|
9
|
+
t1 = /* @__PURE__ */ jsx("path", { d: "M7 7h10v10" });
|
|
10
|
+
$[0] = t0;
|
|
11
|
+
$[1] = t1;
|
|
12
|
+
} else {
|
|
13
|
+
t0 = $[0];
|
|
14
|
+
t1 = $[1];
|
|
15
|
+
}
|
|
16
|
+
let t2;
|
|
17
|
+
if ($[2] !== props) {
|
|
18
|
+
t2 = /* @__PURE__ */ jsxs("svg", { fill: "none", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.7, viewBox: "0 0 24 24", ...props, children: [
|
|
19
|
+
t0,
|
|
20
|
+
t1
|
|
21
|
+
] });
|
|
22
|
+
$[2] = props;
|
|
23
|
+
$[3] = t2;
|
|
24
|
+
} else {
|
|
25
|
+
t2 = $[3];
|
|
26
|
+
}
|
|
27
|
+
return t2;
|
|
28
|
+
};
|
|
29
|
+
export {
|
|
30
|
+
SvgLinkArrow as ReactComponent
|
|
31
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgLink = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { strokeLinecap: "round", d: "M13.19 8.688a4.5 4.5 0 011.242 7.244l-4.5 4.5a4.5 4.5 0 01-6.364-6.364l1.757-1.757m13.35-.622l1.757-1.757a4.5 4.5 0 00-6.364-6.364l-4.5 4.5a4.5 4.5 0 001.242 7.244" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgLink as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgMarkdown = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { d: "M36.1889 0H2.81564C1.26155 0 0 1.26155 0 2.80955V21.1844C0 22.7384 1.26155 24 2.81564 24H36.195C37.7491 24 39.0107 22.7384 39.0046 21.1905V2.80955C39.0046 1.26155 37.743 0 36.1889 0ZM20.6298 18.3748H16.8817V11.0615L13.1336 15.7481L9.38548 11.0615V18.3748H5.62519V5.62519H9.37329L13.1214 10.3118L16.8695 5.62519H20.6176V18.3748H20.6298ZM28.8756 18.5637L23.2504 12H26.9985V5.62519H30.7466V12H34.4947L28.8756 18.5637Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 40 24", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgMarkdown as ReactComponent
|
|
24
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as _c } from "react-compiler-runtime";
|
|
3
|
+
const SvgMdx = (props) => {
|
|
4
|
+
const $ = _c(3);
|
|
5
|
+
let t0;
|
|
6
|
+
if ($[0] === Symbol.for("react.memo_cache_sentinel")) {
|
|
7
|
+
t0 = /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2.61487 0.75H55.4527C56.4827 0.75 57.3176 1.58493 57.3176 2.61486V21.8851C57.3176 22.9151 56.4827 23.75 55.4527 23.75H2.61487C1.58493 23.75 0.75 22.9151 0.75 21.8851V2.61486C0.75 1.58493 1.58493 0.75 2.61487 0.75ZM52.0839 16.6504L46.9553 11.5236L52.1876 6.29126L50.4294 4.53305L45.1968 9.76566L39.9622 4.5329L38.2043 6.29141L43.4386 11.5239L38.3078 16.6547L40.066 18.4129L45.1971 13.2818L50.326 18.4089L52.0839 16.6504ZM24.9399 10.8529L28.4121 14.3251V4.89414H30.8986V14.3251L34.3708 10.8529L36.1291 12.6111L29.6554 19.0848L23.1817 12.6111L24.9399 10.8529ZM20.0202 18.5698V5.208L12.9752 12.253L6.03375 5.3116V18.6734H8.52023V11.3145L12.9752 15.7695L17.5337 11.2109V18.5698H20.0202Z" });
|
|
8
|
+
$[0] = t0;
|
|
9
|
+
} else {
|
|
10
|
+
t0 = $[0];
|
|
11
|
+
}
|
|
12
|
+
let t1;
|
|
13
|
+
if ($[1] !== props) {
|
|
14
|
+
t1 = /* @__PURE__ */ jsx("svg", { viewBox: "0 0 58 24", fill: "currentColor", ...props, children: t0 });
|
|
15
|
+
$[1] = props;
|
|
16
|
+
$[2] = t1;
|
|
17
|
+
} else {
|
|
18
|
+
t1 = $[2];
|
|
19
|
+
}
|
|
20
|
+
return t1;
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
SvgMdx as ReactComponent
|
|
24
|
+
};
|