@project-jade-garden/kobalte
Version:
Kobalte anatomy slots for headless design
25 lines (24 loc) • 818 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Color Field**
* @description Allows users to enter and adjust a hex color value.
* @see [source](https://kobalte.dev/docs/core/components/color-field#anatomy)
*/
export declare const slots: readonly ["description", "errorMessage", "input", "label"];
/**
* **Color Field**
* @description Allows users to enter and adjust a hex color value.
* @see [source](https://kobalte.dev/docs/core/components/color-field#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Color Field**
* @description Allows users to enter and adjust a hex color value.
* @see [source](https://kobalte.dev/docs/core/components/color-field#api-reference)
*/
export type Traits = SVATraits<Slots, {
description: {};
errorMessage: {};
input: {};
label: {};
}>;