mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-24 09:28:21 +00:00
14 lines
332 B
Svelte
14 lines
332 B
Svelte
<script lang="ts">
|
|
interface Props {
|
|
value: string
|
|
name: string
|
|
id: string
|
|
[key: string]: unknown
|
|
}
|
|
|
|
let {value = $bindable(), name, id, ...rest}: Props = $props()
|
|
</script>
|
|
|
|
<div>
|
|
<input type="text" {name} {id} bind:value {...rest} class="input input-bordered w-full mt-2" />
|
|
</div>
|