import cn from "../../lib/helpers/classnames"; import type { ComponentPropsWithoutRef } from "react"; export type BlockquoteProps = ComponentPropsWithoutRef<"blockquote">; const Blockquote = ({ className, ...rest }: BlockquoteProps) => (
); export default Blockquote;