UNPKG

@ludiks/react

Version:

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

16 lines (15 loc) 685 B
import { BaseComponentProps } from '../../types'; interface UserProfileProps extends BaseComponentProps { userId: string; showCircuits?: boolean; showRewards?: boolean; showMetadata?: boolean; showStreak?: boolean; circuitLimit?: number; variant?: 'card' | 'detailed' | 'minimal' | 'dashboard'; orientation?: 'vertical' | 'horizontal'; autoRefresh?: boolean; refreshInterval?: number; } export declare function UserProfile({ userId, showCircuits, showRewards, showMetadata, showStreak, circuitLimit, variant, orientation, autoRefresh, refreshInterval, className, colors, }: UserProfileProps): import("react/jsx-runtime").JSX.Element; export {};