import type { BlockquoteHTMLAttributes } from "react"; import styles from "./Blockquote.module.css"; type Props = BlockquoteHTMLAttributes; const Blockquote = ({ children, ...rest }: Props) => ( {children} ); export default Blockquote;
{children}