UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

19 lines (18 loc) 585 B
import type { PaginationButtonProps } from "../types"; /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * [PaginationButtonProps](https://github.com/themesberg/flowbite-svelte/blob/main/src/lib/types.ts#L1195) * ## Props * @prop children * @prop size * @prop onclick * @prop disabled = false * @prop class: className * @prop href * @prop active = false * @prop ...restProps */ declare const PaginationButton: import("svelte").Component<PaginationButtonProps, {}, "">; type PaginationButton = ReturnType<typeof PaginationButton>; export default PaginationButton;