picoscratch-ui
v1.0.0
Published
1. Install package: `bun i picoscratch-ui @lucide/svelte` (lucide is technically optional but throw it in for good measure) 2. Add tailwindcss: `bunx sv add tailwindcss` 3. Change the app.css: ```css @import "tailwindcss"; @import "picoscratch-ui/css"; @s
Readme
PicoScratch UI
Installation
- Install package:
bun i picoscratch-ui @lucide/svelte(lucide is technically optional but throw it in for good measure) - Add tailwindcss:
bunx sv add tailwindcss - Change the app.css:
@import "tailwindcss";
@import "picoscratch-ui/css";
@source "../node_modules/picoscratch-ui/dist/**/*.svelte";- Add to your +layout.svelte:
<script>
import { Toaster, ModeWatcher } from "picoscratch-ui";
</script>
<ModeWatcher />
<Toaster />