Components
TreeTable
TreeTable is a token-driven Sigil component in the data display and tables group.
Import
import { TreeTable } from "@sigil-ui/components";Preview
Usage
<TreeTable headers={["Status"]} rows={[{ id: "components", label: "Components", values: ["Ready"], children: [{ id: "modal", label: "Modal", values: ["Ready"] }] }]} />CLI
npx @sigil-ui/cli add tree-tableToken Integration
TreeTable follows the Sigil component rules: styles resolve from var(--s-*), class names are mergeable through className, and the component is exported from @sigil-ui/components.