mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-09-04 00:20:39 +00:00
* restructuring * pin svelte kit version & parallel execution * update svelte kit * correct test result assets * add timeout * correct locale path * simplify crypto * fix for #58 * add verbosity flag * disable flaky test
12 lines
187 B
Svelte
12 lines
187 B
Svelte
<script lang="ts">
|
|
export let label: string = ''
|
|
export let value: string
|
|
</script>
|
|
|
|
<label>
|
|
<small>
|
|
{label}
|
|
</small>
|
|
<textarea class="box" {...$$restProps} bind:value />
|
|
</label>
|