UNPKG

@project-jade-garden/reka-ui

Version:
24 lines (23 loc) 848 B
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"; }; }>;