import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface LabelStoryInput {} export interface LabelStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-label Story", [UI]: (
Default label Required label Disabled label Use cf-text for captions, helper copy, metadata, and other generic text.
), controls: (
No interactive controls. Attributes: for, required, disabled.
), }; });