pleshevski.ru/uikit/typo.ts
Dmitriy Pleshevskiy 406429cbb5
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
move works to the module
2023-06-20 16:30:27 +03:00

7 lines
173 B
TypeScript

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);
}