aboutsummaryrefslogtreecommitdiff
path: root/src/components/BlockQuote.js
diff options
context:
space:
mode:
author安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>2024-02-04 23:40:37 +0900
committer安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>2024-02-04 23:40:37 +0900
commit39105f5a8b609ec8ff7772ca1883e6d6a0a81b62 (patch)
treee045808b572bc7ba0e55b369a29e6f3f6de46732 /src/components/BlockQuote.js
parent4bc20ff2d684bb14f8e0227f2ddd444f1d5e212b (diff)
デザインを変更
Diffstat (limited to 'src/components/BlockQuote.js')
-rw-r--r--src/components/BlockQuote.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/BlockQuote.js b/src/components/BlockQuote.js
index 3a198a15..18eac100 100644
--- a/src/components/BlockQuote.js
+++ b/src/components/BlockQuote.js
@@ -6,8 +6,8 @@ import { Icon } from '@iconify/react'; // Import the entire Iconify library.
export default function BlockQuote({children, refs, href}) {
return (
<blockquote className={styles.qt}>
+ <header><cite><ExternalLink href={href}>{refs}</ExternalLink></cite></header>
{children}
- <footer><cite><ExternalLink href={href}><Icon inline icon="zondicons:book-reference" height="18"/> {refs}</ExternalLink></cite></footer>
</blockquote>
);
} \ No newline at end of file