File size: 521 Bytes
1123781 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<script lang="ts">
import type { FieldProps } from '$lib/types';
import { onMount } from 'svelte';
export let value: string;
export let params: FieldProps;
onMount(() => {
value = String(params?.default ?? '');
});
</script>
<div class="text-normal flex items-center rounded-md border border-gray-700 px-1 py-1">
<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>
|