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}) { if (href) { return (
); } return ({children} {refs}
); }{refs} {children}