UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

24 lines (23 loc) 587 B
import React from 'react'; export declare type Props = { activePage?: number; data: DataTableType[]; isLoading: boolean; setPage?: (page: number) => void; totalPages?: number | null; empty: () => void; total: number | null; rowsPerPage?: number; mobileTableBody?: React.ReactNode; hasHeaders?: boolean; customHeaders?: Record<string, string | React.ReactNode>; i18n?: { sortBy: { showing: string; of: string; }; }; }; export declare type DataTableType = { [key: string]: React.ReactNode; };