import clsx from "clsx"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./Blockquote.module.css"; export type BlockquoteProps = ComponentPropsWithoutRef<"blockquote">; const Blockquote = ({ className, ...rest }: BlockquoteProps) => (
); export default Blockquote;