@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
26 lines (25 loc) • 925 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Link Preview**
* @description Displays a summarized preview of a linked content's details or information.
* @see [source](https://www.bits-ui.com/docs/components/link-preview#api-reference)
*/
export declare const slots: readonly ["arrow", "root", "content", "trigger", "contentStatic"];
/**
* **Link Preview**
* @description Displays a summarized preview of a linked content's details or information.
* @see [source](https://www.bits-ui.com/docs/components/link-preview#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Link Preview**
* @description Displays a summarized preview of a linked content's details or information.
* @see [source](https://www.bits-ui.com/docs/components/link-preview#api-reference)
*/
export type Traits = SVATraits<Slots, {
arrow: {};
root: {};
content: {};
trigger: {};
contentStatic: {};
}>;