import { type ComponentPropsWithoutRef, forwardRef } from "react" import { cn } from "../../libs/utils" export type ParagraphProps = ComponentPropsWithoutRef<"p"> export const Paragraph = forwardRef( ({ className, ...props }, ref) => { return

}, ) Paragraph.displayName = "Paragraph"