import { Dynamic } from "solid-js/web"; import type { ParagraphProps } from "./paragraph.d"; import { useClassList } from "../utils/useProps"; export function Title (props: ParagraphProps) { const heading = () => props.heading || 1; const classList = () => useClassList(props, 'cm-typograghy-title', `cm-typograghy-h${heading()}`); const options = [ () =>

{props.children}

, () =>

{props.children}

, () =>

{props.children}

, () =>

{props.children}

, () =>
{props.children}
, () =>
{props.children}
, ]; return }