From 361f2b90070d99ce4676f4aed088e83f31eac325 Mon Sep 17 00:00:00 2001 From: 安竹洋平 <61961825+yasutakeyohei@users.noreply.github.com> Date: Wed, 31 Jan 2024 00:36:03 +0900 Subject: initial commit --- src/components/BlockQuote.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/components/BlockQuote.js (limited to 'src/components/BlockQuote.js') diff --git a/src/components/BlockQuote.js b/src/components/BlockQuote.js new file mode 100644 index 00000000..7c8a5f5c --- /dev/null +++ b/src/components/BlockQuote.js @@ -0,0 +1,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 ( +
+ {children} + ++ ); +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf