frontend/src/lib/components/NoConversation.svelte (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 |
<script lang="ts">
import ControlButton from '$lib/components/ControlButton.svelte';
import newIcon from '$lib/assets/icons/new.svg?raw';
</script>
<h2 class="text-center">
You seem to have no conversations.
<br/>
Start a new one with the
<ControlButton icon={newIcon} />
button.
</h2>
|