import { type ComponentPropsWithRef, forwardRef } from "react" import { cn } from "../../libs/utils" export type BlockquoteProps = ComponentPropsWithRef<"blockquote"> export const Blockquote = forwardRef( ({ className, ...props }, ref) => { return (
) }, ) Blockquote.displayName = "Blockquote"