From da4e7150af05123ff258feaddc980e5db6c03474 Mon Sep 17 00:00:00 2001
From: Yasutake Yohei <61961825+yasutakeyohei@users.noreply.github.com>
Date: Fri, 19 Jun 2026 23:35:46 +0900
Subject: 「」を含む太字を <strong> タグに修正
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/ExternalLink.astro | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 src/components/ExternalLink.astro
(limited to 'src/components/ExternalLink.astro')
diff --git a/src/components/ExternalLink.astro b/src/components/ExternalLink.astro
new file mode 100644
index 0000000..1068872
--- /dev/null
+++ b/src/components/ExternalLink.astro
@@ -0,0 +1,15 @@
+---
+export interface Props {
+ href?: string;
+}
+const { href } = Astro.props;
+---
+{
+ href ? (
+
+
+
+ ) : (
+ <>>
+ )
+}
--
cgit v1.3.1