UNPKG

@ark-ui/solid

Version:

A collection of unstyled, accessible UI components for Solid, utilizing state machines for seamless interaction.

19 lines (17 loc) 324 B
// src/components/field/field.anatomy.ts import { createAnatomy } from "@zag-js/anatomy"; var fieldAnatomy = createAnatomy("field").parts( "root", "errorText", "helperText", "input", "label", "select", "textarea", "requiredIndicator" ); var parts = fieldAnatomy.build(); export { fieldAnatomy, parts };