UNPKG

@project-jade-garden/kobalte

Version:
25 lines (24 loc) 782 B
import { SVATraits } from 'jade-garden'; /** * **Meter** * @description Displays numeric value that varies within a defined range * @see [source](https://kobalte.dev/docs/core/components/meter#anatomy) */ export declare const slots: readonly ["fill", "label", "track", "valueLabel"]; /** * **Meter** * @description Displays numeric value that varies within a defined range * @see [source](https://kobalte.dev/docs/core/components/meter#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Meter** * @description Displays numeric value that varies within a defined range * @see [source](https://kobalte.dev/docs/core/components/meter#api-reference) */ export type Traits = SVATraits<Slots, { fill: {}; label: {}; track: {}; valueLabel: {}; }>;