team-1/frontend/src/lib/components/SuggestionInput.svelte

8 lines
263 B
Svelte
Raw Normal View History

2025-08-01 21:10:03 +02:00
<script lang="ts">
</script>
<div class="flex h-full w-full flex-row items-center gap-2 rounded border-2 border-black p-4">
<input type="text" placeholder="Song & Artist" class="h-full w-3/4 rounded" />
<button class="w-1/4 rounded">Send</button>
</div>