import React from "react"; import clsx from "clsx"; export function Prose({ as, className, ...props }: React.ComponentPropsWithoutRef & { as?: T; }) { const Component = as ?? "div"; return ( ); }