@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 343 B
TypeScript
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 };