[READ-ONLY] Mirror of https://github.com/flo-bit/ui-kit. 🦊 fox ui, svelte 5 and tailwind 4 flo-bit.dev/ui-kit/
svelte tailwindcss ui-components
0

Configure Feed

Select the types of activity you want to include in your feed.

small fix docs

Florian (May 6, 2025, 7:39 AM +0200) 213342a5 922c8370

+6 -4
+2 -2
apps/docs/src/routes/(main)/components/base/modal/Example.svelte
··· 21 21 22 22 <Modal bind:open={openCustom} closeButton={false}> 23 23 <Subheading> 24 - You can put anything in here... Like an image: 25 - </Subheading> 24 + You can put anything in here... Like an image: 25 + </Subheading> 26 26 27 27 <ImageContainer 28 28 src={cute}
+2 -1
apps/docs/src/routes/(main)/components/time/stopwatch/Stopwatch.md
··· 12 12 13 13 ```svelte 14 14 <script lang="ts"> 15 - import { Button, Stopwatch, StopwatchState } from '@fuxui/time'; 15 + import { Button } from '@fuxui/base'; 16 + import { Stopwatch, StopwatchState } from '@fuxui/time'; 16 17 17 18 let stopwatch: StopwatchState | undefined = $state(); 18 19 </script>
+2 -1
apps/docs/src/routes/(main)/components/time/timer/Timer.md
··· 12 12 13 13 ```svelte 14 14 <script lang="ts"> 15 - import { Button, Timer, TimerState } from '@fuxui/time'; 15 + import { Button } from '@fuxui/base'; 16 + import { Timer, TimerState } from '@fuxui/time'; 16 17 17 18 let timer = $state(new TimerState(1000 * 60 * 60)); 18 19 </script>