UNPKG

@project-jade-garden/bits-ui

Version:
27 lines (26 loc) 979 B
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: {}; }>;