@heycar-uikit/core
Version:
The React UI library from HeyCar
11 lines (10 loc) • 344 B
TypeScript
import { FC } from 'react';
import { PaginationProps } from "../Pagination.types-254e1d66";
interface PaginationCanvasProps extends PaginationProps {
pageLabel?: string;
gotoLabel?: string;
prevPageLabel?: string;
nextPageLabel?: string;
}
declare const PaginationCanvas: FC<PaginationCanvasProps>;
export { PaginationCanvas };