@project-jade-garden/kobalte
Version:
Kobalte anatomy slots for headless design
25 lines (24 loc) • 831 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Hover Card**
* @description Allows sighted users to preview content available behind a link.
* @see [source](https://kobalte.dev/docs/core/components/hover-card#anatomy)
*/
export declare const slots: readonly ["root", "arrow", "content", "trigger"];
/**
* **Hover Card**
* @description Allows sighted users to preview content available behind a link.
* @see [source](https://kobalte.dev/docs/core/components/hover-card#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Hover Card**
* @description Allows sighted users to preview content available behind a link.
* @see [source](https://kobalte.dev/docs/core/components/hover-card#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
arrow: {};
content: {};
trigger: {};
}>;