all repos — emessage @ 0cbb6ef61f1c6f3f3a199c14add57b3daed63684

The EMessage email client

frontend/src/lib/components/GenericInput.svelte (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
<script lang="ts">
	let { fallback, value = $bindable(), ...props } = $props();

	if (!value) {
		value = fallback;
	}
</script>

<input class="w-full border-b-1 border-input" bind:value={value} {...props} />