webcompile/src/lib/Form/TextArea.svelte

22 lines
261 B
Svelte
Raw Normal View History

2022-08-18 00:08:27 +05:30
<script lang="ts">
2022-08-31 16:46:12 +05:30
export let id: string;
export let name: string;
export let placeholder: string;
2022-08-18 00:08:27 +05:30
</script>
<textarea
2022-08-31 16:46:12 +05:30
{id}
{name}
rows="4"
cols="25"
required
class="form-textbox"
{placeholder}
/>
2022-09-10 21:28:19 +05:30
<style>
textarea {
resize: vertical;
}
2022-10-01 18:41:54 +05:30
</style>