aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/PlayerProfile.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/app/components/PlayerProfile.tsx')
-rw-r--r--frontend/app/components/PlayerProfile.tsx27
1 files changed, 0 insertions, 27 deletions
diff --git a/frontend/app/components/PlayerProfile.tsx b/frontend/app/components/PlayerProfile.tsx
deleted file mode 100644
index 675d77b..0000000
--- a/frontend/app/components/PlayerProfile.tsx
+++ /dev/null
@@ -1,27 +0,0 @@
-import { PlayerInfo as FullPlayerInfo } from "../models/PlayerInfo";
-import UserIcon from "./UserIcon";
-
-type PlayerInfo = Pick<FullPlayerInfo, "displayName" | "iconPath">;
-
-type Props = {
- playerInfo: PlayerInfo;
- label: string;
-};
-
-export default function PlayerProfile({ playerInfo, label }: Props) {
- return (
- <div className="flex flex-col gap-6 my-auto">
- <div className="flex flex-col gap-2">
- <div className="text-4xl">{label}</div>
- <div className="text-6xl">{playerInfo.displayName}</div>
- </div>
- {playerInfo.iconPath && (
- <UserIcon
- iconPath={playerInfo.iconPath}
- displayName={playerInfo.displayName!}
- className="w-48 h-48"
- />
- )}
- </div>
- );
-}