@project-jade-garden/reka-ui
Version:
Reka UI anatomy slots for headless design
24 lines (23 loc) • 848 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Pagination**
* @description Displays data in paged format and provides navigation between pages.
* @see [source](https://reka-ui.com/docs/components/pagination#anatomy)
*/
export declare const slots: readonly ["root", "ellipsis", "first", "last", "list", "listItem", "next", "prev"];
/**
* **Pagination**
* @description Displays data in paged format and provides navigation between pages.
* @see [source](https://reka-ui.com/docs/components/pagination#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Pagination**
* @description Displays data in paged format and provides navigation between pages.
* @see [source](https://reka-ui.com/docs/components/pagination#api-reference)
*/
export type Traits = SVATraits<Slots, {
ellipsis: {
type: "ellipsis";
};
}>;