all repos — emessage @ 0cbb6ef61f1c6f3f3a199c14add57b3daed63684

The EMessage email client

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>