import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface SeparatorStoryInput {} export interface SeparatorStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-separator Story", [UI]: (
Content above
Content below
), controls: (
No interactive controls. Simple horizontal divider.
), }; });