mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
17 lines
409 B
Svelte
17 lines
409 B
Svelte
<script lang="ts">
|
|
import { FormItem } from '.';
|
|
|
|
export let id: string;
|
|
export let label: string;
|
|
export let files: FileList;
|
|
export let required = false;
|
|
export let disabled = false;
|
|
</script>
|
|
|
|
<FormItem>
|
|
<label class="label" for={id}>{label}</label>
|
|
<div class="input-text-wrapper">
|
|
<input {id} {disabled} {required} bind:files type="file" />
|
|
</div>
|
|
</FormItem>
|