aboutsummaryrefslogtreecommitdiff
path: root/examples/docs/src/components/RightSidebar
diff options
context:
space:
mode:
Diffstat (limited to 'examples/docs/src/components/RightSidebar')
-rw-r--r--examples/docs/src/components/RightSidebar/MoreMenu.astro8
-rw-r--r--examples/docs/src/components/RightSidebar/RightSidebar.astro4
2 files changed, 6 insertions, 6 deletions
diff --git a/examples/docs/src/components/RightSidebar/MoreMenu.astro b/examples/docs/src/components/RightSidebar/MoreMenu.astro
index 649e02c29..a78f86d59 100644
--- a/examples/docs/src/components/RightSidebar/MoreMenu.astro
+++ b/examples/docs/src/components/RightSidebar/MoreMenu.astro
@@ -1,6 +1,6 @@
---
-import ThemeToggleButton from './ThemeToggleButton.tsx';
-import * as CONFIG from '../../config';
+import ThemeToggleButton from "./ThemeToggleButton.tsx";
+import * as CONFIG from "../../config";
const { editHref } = Astro.props;
const showMoreSection = CONFIG.COMMUNITY_INVITE_URL || editHref;
---
@@ -25,7 +25,7 @@ const showMoreSection = CONFIG.COMMUNITY_INVITE_URL || editHref;
<path
fill="currentColor"
d="M290.74 93.24l128.02 128.02-277.99 277.99-114.14 12.6C11.35 513.54-1.56 500.62.14 485.34l12.7-114.22 277.9-277.88zm207.2-19.06l-60.11-60.11c-18.75-18.75-49.16-18.75-67.91 0l-56.55 56.55 128.02 128.02 56.55-56.55c18.75-18.76 18.75-49.16 0-67.91z"
- ></path>
+ />
</svg>
<span>Edit this page</span>
</a>
@@ -49,7 +49,7 @@ const showMoreSection = CONFIG.COMMUNITY_INVITE_URL || editHref;
<path
fill="currentColor"
d="M448 0H64C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h96v84c0 9.8 11.2 15.5 19.1 9.7L304 416h144c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64z"
- ></path>
+ />
</svg>
<span>Join our community</span>
</a>
diff --git a/examples/docs/src/components/RightSidebar/RightSidebar.astro b/examples/docs/src/components/RightSidebar/RightSidebar.astro
index a0b5779dc..f61fb010f 100644
--- a/examples/docs/src/components/RightSidebar/RightSidebar.astro
+++ b/examples/docs/src/components/RightSidebar/RightSidebar.astro
@@ -1,6 +1,6 @@
---
-import TableOfContents from './TableOfContents.tsx';
-import MoreMenu from './MoreMenu.astro';
+import TableOfContents from "./TableOfContents.tsx";
+import MoreMenu from "./MoreMenu.astro";
const { content, githubEditUrl } = Astro.props;
const headers = content.astro.headers;
---