aboutsummaryrefslogtreecommitdiff
path: root/src/components/BlockQuote.js
diff options
context:
space:
mode:
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 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>