import React from "react"; import clsx from "clsx"; type ProseProps = { className?: string; children: React.ReactNode; textSize?: "sm" | "base" | "lg" | "xl" | "2xl" | "3xl" | "4xl"; }; export function Prose({ className, textSize = "base", children, ...props }: ProseProps) { return (
{children}
); }