From 6f565a58c6ebda61bc88b2509f0c473fd793f831 Mon Sep 17 00:00:00 2001
From: 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com>
Date: Thu, 1 Feb 2024 22:55:53 +0900
Subject: classをclassNameに修正
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 src/components/BlockQuote.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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>
-- 
cgit v1.2.3-54-g00ecf