import type { JSX } from "solid-js"; import { Dynamic } from "solid-js/web"; import clsx from "clsx"; type ProseProps = JSX.IntrinsicElements["div"] & { class?: string; as?: keyof JSX.IntrinsicElements; }; export function Prose(props: ProseProps) { const Component = props.as ?? "div"; return ( ); }