flowbite-svelte
Version:
Flowbite components for Svelte
29 lines (28 loc) • 841 B
TypeScript
import { type PaginationNavProps } from "..";
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Type
* [PaginationNavProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1162)
* ## Props
* @prop currentPage = 1
* @prop totalPages = 1
* @prop visiblePages = 5
* @prop onPageChange
* @prop prevContent
* @prop nextContent
* @prop prevClass
* @prop nextClass
* @prop layout = "pagination"
* @prop nextLabel = "Next"
* @prop previousLabel = "Previous"
* @prop ariaLabel = "Page navigation"
* @prop size = "default"
* @prop class: className
* @prop classes
* @prop spanClass
* @prop tableDivClass
* @prop ...restProps
*/
declare const PaginationNav: import("svelte").Component<PaginationNavProps, {}, "">;
type PaginationNav = ReturnType<typeof PaginationNav>;
export default PaginationNav;