UNPKG

@project-jade-garden/kobalte

Version:
25 lines (24 loc) 857 B
import { SVATraits } from 'jade-garden'; /** * **Progress** * @description Show either determinate or indeterminate progress of an operation over time. * @see [source](https://kobalte.dev/docs/core/components/progress#anatomy) */ export declare const slots: readonly ["fill", "label", "track", "valueLabel"]; /** * **Progress** * @description Show either determinate or indeterminate progress of an operation over time. * @see [source](https://kobalte.dev/docs/core/components/progress#anatomy) */ export type Slots = (typeof slots)[number]; /** * **Progress** * @description Show either determinate or indeterminate progress of an operation over time. * @see [source](https://kobalte.dev/docs/core/components/progress#api-reference) */ export type Traits = SVATraits<Slots, { fill: {}; label: {}; track: {}; valueLabel: {}; }>;