UNPKG

@sleeperhq/mini-core

Version:

Core library frameworks for developing Sleeper Mini Apps.

24 lines (23 loc) 757 B
import React from "react"; import { League, Player, User } from "@sleeperhq/mini-core/declarations/types/shared/graphql.d"; export interface AvatarProps { user: User; width?: number; } export declare const Avatar: React.NamedExoticComponent<AvatarProps>; export interface AvatarPlayerProps { player: Player; width?: number; } export declare const AvatarPlayer: React.NamedExoticComponent<AvatarPlayerProps>; export interface AvatarTeamProps { team: string; sport: string; width?: number; } export declare const AvatarTeam: React.NamedExoticComponent<AvatarTeamProps>; export interface AvatarLeagueProps { league: League; width?: number; } export declare const AvatarLeague: React.NamedExoticComponent<AvatarLeagueProps>;