import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface ToolbarStoryInput {} export interface ToolbarStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-toolbar Story", [UI]: (
Standard Toolbar
Menu Page Title Help Save
Dense Toolbar
Back Compact Done
), controls: (
No interactive controls. Slots: start, center, end. Attributes: dense, elevated, sticky.
), }; });