@bytebeans/macaw-ui
Version:
Saleor's UI component library
12 lines (11 loc) • 351 B
TypeScript
import React from "react";
export interface PaginationActionsProps {
className?: string;
disabled?: boolean;
hasNextPage: boolean;
hasPreviousPage: boolean;
nextIconButtonProps?: any;
onNextPage: () => void;
onPreviousPage: () => void;
}
export declare const PaginationActions: React.FC<PaginationActionsProps>;