@project-jade-garden/kobalte
Version:
Kobalte anatomy slots for headless design
27 lines (26 loc) • 879 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Pagination**
* @description Allows the user to select a specific page from a range of pages.
* @see [source](https://kobalte.dev/docs/core/components/pagination#anatomy)
*/
export declare const slots: readonly ["root", "ellipsis", "item", "items", "next", "previous"];
/**
* **Pagination**
* @description Allows the user to select a specific page from a range of pages.
* @see [source](https://kobalte.dev/docs/core/components/pagination#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Pagination**
* @description Allows the user to select a specific page from a range of pages.
* @see [source](https://kobalte.dev/docs/core/components/pagination#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
ellipsis: {};
item: {};
items: {};
next: {};
previous: {};
}>;