@tinacms/toolkit
Version:
Tina is a lightweight but powerful toolkit for creating a site editing ui with javascript components. Tina surfaces superpowers for dev’s to create, expand on and customize a simple yet intuitive ui for editing content.
15 lines (11 loc) • 381 B
TypeScript
/**
*/
/// <reference types="react" />
export interface MediaPaginatorProps {
navigateNext: () => void;
navigatePrev: () => void;
hasNext: boolean;
hasPrev: boolean;
variant?: 'primary' | 'secondary' | 'white' | 'ghost';
}
export declare function CursorPaginator({ navigateNext, navigatePrev, hasNext, hasPrev, variant, }: MediaPaginatorProps): JSX.Element;