import { cn } from "@/lib/utils"; import type React from "react"; type ProseProps = React.HTMLAttributes & { as?: "article"; html: string; }; function Prose({ children, html, className }: ProseProps) { return (
{html ?
: children}
); } export default Prose;