@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
22 lines (21 loc) • 700 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Meter**
* @description Display real-time measurements within a defined range.
* @see [source](https://www.bits-ui.com/docs/components/meter#api-reference)
*/
export declare const slots: readonly ["root"];
/**
* **Meter**
* @description Display real-time measurements within a defined range.
* @see [source](https://www.bits-ui.com/docs/components/meter#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Meter**
* @description Display real-time measurements within a defined range.
* @see [source](https://www.bits-ui.com/docs/components/meter#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
}>;