mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
14 lines
394 B
Svelte
14 lines
394 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import ConfigInput from "$lib/components/ConfigInput.svelte";
|
|
|
|
export let value: string;
|
|
export let placeholder: string;
|
|
</script>
|
|
|
|
<ConfigInput>
|
|
<input type="text" bind:value {placeholder} class="w-100 mb-1" />
|
|
</ConfigInput>
|