Daisy UI #14

Merged
BenjaminPalko merged 28 commits from daisy-ui into master 2024-12-19 21:20:21 -05:00
4 changed files with 4 additions and 1 deletions
Showing only changes of commit 337f029ae5 - Show all commits

View file

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

View file

@ -1,8 +1,8 @@
<script lang="ts">
import Button from '$lib/components/Button.svelte';
import Container from '$lib/components/common/Container.svelte';
import TextInput from '$lib/components/TextInput.svelte';
import Tabs from '$lib/components/common/Tabs';
import TextInput from '$lib/components/common/TextInput';
import { fade } from 'svelte/transition';
let tab: 0 | 1 = $state(0);