diff --git a/components/Player.tsx b/components/Player.tsx index 59d8df3..113f67b 100644 --- a/components/Player.tsx +++ b/components/Player.tsx @@ -3,16 +3,72 @@ import PromotePlayer from "./PromotePlayer"; import KickPlayer from "./KickPlayer"; import { Party } from "@/lib/user"; -export function AdminBadge() { - return admin; +export function AdminIcon() { + return ( + + + + + ); } -export function AliveBadge() { - return alive; +export function AliveIcon() { + return ( + + + + + ); } -export function DeadBadge() { - return dead; +export function DeadIcon() { + return ( + + + + + + + + + ); } export default function Player({ @@ -31,8 +87,8 @@ export default function Player({

{player.name}

- {party.adminId === player.id && } - {party.started && (player.alive ? : )} + {party.adminId === player.id && } + {party.started && (player.alive ? : )} {isAdmin && userId !== player.id && ( <>