@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
27 lines (26 loc) • 958 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Popover**
* @description Display supplementary content or information when users interact with specific elements.
* @see [source](https://www.bits-ui.com/docs/components/popover#api-reference)
*/
export declare const slots: readonly ["root", "arrow", "content", "contentStatic", "trigger", "close"];
/**
* **Popover**
* @description Display supplementary content or information when users interact with specific elements.
* @see [source](https://www.bits-ui.com/docs/components/popover#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Popover**
* @description Display supplementary content or information when users interact with specific elements.
* @see [source](https://www.bits-ui.com/docs/components/popover#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
arrow: {};
content: {};
contentStatic: {};
trigger: {};
close: {};
}>;