@ark-ui/solid
Version:
A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.
17 lines (14 loc) • 321 B
JavaScript
import { createAnatomy } from '@zag-js/anatomy';
// src/components/field/field.anatomy.ts
var fieldAnatomy = createAnatomy("field").parts(
"root",
"errorText",
"helperText",
"input",
"label",
"select",
"textarea",
"requiredIndicator"
);
var parts = fieldAnatomy.build();
export { fieldAnatomy, parts };