@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
27 lines (26 loc) • 979 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Tooltip**
* @description Provides additional information or context when users hover over or interact with an element.
* @see [source](https://www.bits-ui.com/docs/components/tooltip#api-reference)
*/
export declare const slots: readonly ["root", "content", "contentStatic", "trigger", "arrow", "provider"];
/**
* **Tooltip**
* @description Provides additional information or context when users hover over or interact with an element.
* @see [source](https://www.bits-ui.com/docs/components/tooltip#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Tooltip**
* @description Provides additional information or context when users hover over or interact with an element.
* @see [source](https://www.bits-ui.com/docs/components/tooltip#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
content: {};
contentStatic: {};
trigger: {};
arrow: {};
provider: {};
}>;