blob: 7c8a5f5ce5a8d24ed65af0b368e7e38e2d84c6f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import React from 'react';
import ExternalLink from './ExternalLink.js';
import styles from './BlockQuote.module.css';
import { Icon } from '@iconify/react'; // Import the entire Iconify library.
export default function BlockQuote({children, refs, href}) {
return (
<blockquote class={styles.qt}>
{children}
<footer><cite><ExternalLink href={href}><Icon inline icon="zondicons:book-reference" height="18"/> {refs}</ExternalLink></cite></footer>
</blockquote>
);
}
|