blob: 18eac100704ac39d4c1cee7614787a3155a9dc9c (
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 className={styles.qt}>
<header><cite><ExternalLink href={href}>{refs}</ExternalLink></cite></header>
{children}
</blockquote>
);
}
|