import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface ToggleGroupStoryInput {} export interface ToggleGroupStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-toggle-group Story", [UI]: (
Bold Italic Underline Bold Italic Underline
), controls: ( Toggle groups support single and multiple selection. ), }; });