feat: setup shadcn-svelte

This commit is contained in:
2025-04-05 11:07:52 +02:00
parent 9618ac791e
commit 2db24f56a5
6 changed files with 238 additions and 12 deletions

6
src/lib/utils.ts Normal file
View File

@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx";
import { twMerge } from "tailwind-merge";
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}