UNPKG

@ludiks/react

Version:

Complete React library for Ludiks gamification platform - includes SDK and ready-to-use components

12 lines (11 loc) 511 B
import { BaseComponentProps } from '../../types'; interface LeaderboardProps extends BaseComponentProps { period?: 'day' | 'week' | 'month' | 'all'; limit?: number; showUserDetails?: boolean; variant?: 'table' | 'podium' | 'minimal'; autoRefresh?: boolean; refreshInterval?: number; } export declare function Leaderboard({ period, limit, showUserDetails, variant, autoRefresh, refreshInterval, className, colors, }: LeaderboardProps): import("react/jsx-runtime").JSX.Element; export {};