import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface ChipStoryInput {} export interface ChipStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-chip Story", [UI]: (
), controls: (
No interactive controls. Colors: neutral, primary, accent, danger. Attributes: removable, interactive.
), }; });