aboutsummaryrefslogtreecommitdiff
path: root/src/components/BlockQuote.js
blob: 3a198a15432754f8475cbd9237dfebd49e62abe8 (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}>
        {children}
        <footer><cite><ExternalLink href={href}><Icon inline icon="zondicons:book-reference" height="18"/> {refs}</ExternalLink></cite></footer>
    </blockquote>
  );
}