@project-jade-garden/kobalte
Version:
Kobalte anatomy slots for headless design
25 lines (24 loc) • 857 B
TypeScript
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: {};
}>;