mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2025-04-04 00:57:08 +00:00
17 lines
277 B
Svelte
17 lines
277 B
Svelte
<script lang="ts">
|
|
interface Props {
|
|
label?: string
|
|
value: string
|
|
[key: string]: any
|
|
}
|
|
|
|
let { label = '', value = $bindable(), ...rest }: Props = $props()
|
|
</script>
|
|
|
|
<label>
|
|
<small>
|
|
{label}
|
|
</small>
|
|
<textarea class="box" {...rest} bind:value></textarea>
|
|
</label>
|