import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface HeadingStoryInput {} export interface HeadingStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-heading Story", [UI]: (
Heading Level 1 Heading Level 2 Heading Level 3 Heading Level 4 Heading Level 5 Heading Level 6
), controls: (
No interactive controls. Levels 1-6.
), }; });