@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
25 lines (24 loc) • 850 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Tabs**
* @description Organizes content into distinct sections, allowing users to switch between them.
* @see [source](https://www.bits-ui.com/docs/components/tabs#api-reference)
*/
export declare const slots: readonly ["root", "content", "list", "trigger"];
/**
* **Tabs**
* @description Organizes content into distinct sections, allowing users to switch between them.
* @see [source](https://www.bits-ui.com/docs/components/tabs#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Tabs**
* @description Organizes content into distinct sections, allowing users to switch between them.
* @see [source](https://www.bits-ui.com/docs/components/tabs#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
content: {};
list: {};
trigger: {};
}>;