move TextInput

This commit is contained in:
Benjamin Palko 2024-12-30 18:17:22 -05:00
parent 46e5dfb3fc
commit 12e9233ace
5 changed files with 4 additions and 6 deletions

View file

@ -1 +1,2 @@
export { default as Textarea } from './Textarea.svelte';
export { default as Textarea } from './Textarea.svelte';
export { default as TextInput } from './TextInput.svelte';

View file

@ -1,3 +0,0 @@
import TextInput from './TextInput.svelte';
export default TextInput;

View file

@ -1,6 +1,6 @@
<script lang="ts">
import Button from '$lib/components/common/Button';
import TextInput from '$lib/components/common/TextInput';
import { TextInput } from '$lib/components/DataInput';
import Tabs from '$lib/components/Navigation/Tabs';
import { messages } from '$lib/i18n/index.js';
import { fade } from 'svelte/transition';
@ -79,4 +79,4 @@
.page {
@apply flex flex-col items-center justify-around gap-24 py-[10%];
}
</style>
</style>