UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

8 lines (7 loc) 416 B
import { type Atom } from "@cn-ui/reactive"; import "../animation/fade.css"; import { type UseViewingPaginationOptions } from "./useViewingPagination"; export interface PaginationProps extends UseViewingPaginationOptions { pageSizeModel?: Atom<number>; } export declare const Pagination: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<PaginationProps, HTMLDivElement, number>>;