UNPKG

@stanfordspezi/spezi-web-design-system

Version:

Stanford Biodesign Digital Health Spezi Web Design System

20 lines (19 loc) 1.33 kB
import { ComponentProps } from 'react'; import { ButtonProps } from '../Button'; /** * Primitives to build your Pagination * If you're looking for batteries-included components, see ButtonPagination * */ export declare const Pagination: ({ className, ...props }: ComponentProps<"nav">) => import("react").JSX.Element; export declare const PaginationContent: ({ className, ...props }: ComponentProps<"ul">) => import("react").JSX.Element; export declare const PaginationItemContainer: ({ className, ...props }: ComponentProps<"li">) => import("react").JSX.Element; interface PaginationLinkProps extends ButtonProps { isActive?: boolean; } export declare const PaginationItem: ({ isActive, size, ...props }: PaginationLinkProps) => import("react").JSX.Element; export declare const PaginationPreviousIcon: () => import("react").JSX.Element; export declare const PaginationPrevious: ({ children, ...props }: ComponentProps<typeof PaginationItem>) => import("react").JSX.Element; export declare const PaginationNextIcon: () => import("react").JSX.Element; export declare const PaginationNext: ({ children, ...props }: ComponentProps<typeof PaginationItem>) => import("react").JSX.Element; export declare const PaginationEllipsis: ({ className, ...props }: ComponentProps<"span">) => import("react").JSX.Element; export {};