UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 343 B
import React from 'react'; import { UserProfileRank, UserProfileTheme } from "../types"; export type UserStatsProps = { themeName: UserProfileTheme; rank?: UserProfileRank; numberOfPosts: number; }; declare const UserStats: ({ themeName, rank, numberOfPosts, }: UserStatsProps) => React.JSX.Element; export { UserStats };