@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
25 lines (24 loc) • 839 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Slider**
* @description Allows users to select a value from a continuous range by sliding a handle.
* @see [source](https://www.bits-ui.com/docs/components/slider#api-reference)
*/
export declare const slots: readonly ["root", "range", "thumb", "tick"];
/**
* **Slider**
* @description Allows users to select a value from a continuous range by sliding a handle.
* @see [source](https://www.bits-ui.com/docs/components/slider#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Slider**
* @description Allows users to select a value from a continuous range by sliding a handle.
* @see [source](https://www.bits-ui.com/docs/components/slider#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
range: {};
thumb: {};
tick: {};
}>;