@zag-js/steps
Version:
Core logic for the steps widget implemented as a state machine
20 lines (19 loc) • 313 B
JavaScript
// src/steps.anatomy.ts
import { createAnatomy } from "@zag-js/anatomy";
var anatomy = createAnatomy("steps").parts(
"root",
"list",
"item",
"trigger",
"indicator",
"separator",
"content",
"nextTrigger",
"prevTrigger",
"progress"
);
var parts = anatomy.build();
export {
anatomy,
parts
};