radames's picture
bump sveltkit and svelte
246efdb
raw
history blame
671 Bytes
<script lang="ts">
import { onMount } from "svelte";
import type { FieldProps } from "$lib/types";
let { value = $bindable(), params }: { value: string; params: FieldProps } =
$props();
onMount(() => {
value = String(params?.default ?? "");
});
</script>
<div class="">
<label class="text-sm font-medium" for={params?.title}>
{params?.title}
</label>
<div class="text-normal flex items-center rounded-md border border-gray-700">
<textarea
class="mx-1 w-full px-3 py-2 font-light outline-none dark:text-black"
title={params?.title}
placeholder="Add your prompt here..."
bind:value
></textarea>
</div>
</div>