diff options
author | 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com> | 2024-02-01 22:55:53 +0900 |
---|---|---|
committer | 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com> | 2024-02-01 22:55:53 +0900 |
commit | 6f565a58c6ebda61bc88b2509f0c473fd793f831 (patch) | |
tree | 36c429be9be6a8777145ca14bd5b3112a55b965f | |
parent | 77c458da4f1e891512e3b1d21e49a8d8a52518ca (diff) |
classをclassNameに修正
-rw-r--r-- | src/components/BlockQuote.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/BlockQuote.js b/src/components/BlockQuote.js index 7c8a5f5c..3a198a15 100644 --- a/src/components/BlockQuote.js +++ b/src/components/BlockQuote.js @@ -5,7 +5,7 @@ import { Icon } from '@iconify/react'; // Import the entire Iconify library. export default function BlockQuote({children, refs, href}) { return ( - <blockquote class={styles.qt}> + <blockquote className={styles.qt}> {children} <footer><cite><ExternalLink href={href}><Icon inline icon="zondicons:book-reference" height="18"/> {refs}</ExternalLink></cite></footer> </blockquote> |