recipes/web/uikit/typo.ts

7 lines
173 B
TypeScript
Raw Normal View History

2022-05-22 15:13:30 +03:00
import { classNames } from "ren/attrs.ts";
import { E, Elem } from "ren/node.ts";
export function H3(text: string): Elem {
return E("h3", classNames("font-h3"), text);
}