Two teams try and fill in any horizontal, vertical, or diagonal line on a bingo board by playing maps on osu! osu.bingo
osu
at microservice 16 lines 444 B view raw
1<script lang="ts"> 2 import { getEventMeaning } from '$lib/gamerules/meaning'; 3 import type { Options } from '$lib/gamerules/options'; 4 import { Clock } from 'lucide-svelte'; 5 6 export let event: Options.Event; 7 8 let eventMeaning = getEventMeaning(event); 9</script> 10 11<div class="flex size-full h-8 items-center rounded bg-pink-400/50 p-2"> 12 <div class="mr-1 flex size-5 h-full items-center opacity-50"> 13 <Clock /> 14 </div> 15 {eventMeaning} 16</div>