import { NAME, pattern, UI, type VNode } from "commonfabric"; // deno-lint-ignore no-empty-interface interface ListItemStoryInput {} export interface ListItemStoryOutput { [NAME]: string; [UI]: VNode; controls: VNode; } export default pattern(() => { return { [NAME]: "cf-list-item Story", [UI]: (
Simple Rows With Icons ๐Ÿ  ๐Ÿ“ ๐Ÿ”” With Actions ๐Ÿ“„ โŒ˜N โœ… 3 Expandable ๐Ÿ“ฆ Active
Building UI ยท 29 tokens In Progress
๐Ÿ“ฆ Alert
Requires attention
), controls: (
Click expandable items to toggle their detail areas.
), }; });