classroomstuff/src/routes/kahootclone/host/components/lobby/PlayersGUI/playerBadge.svelte

6 lines
181 B
Svelte

<script>
let props = $props();
let playerName = props.playerName;
</script>
<span class="m-[0] rounded-xl bg-gray-700 pt-1 pr-2 pb-0 pl-2 font-mono text-3xl">{playerName}</span>