feat: add shadcn-svelte

This commit is contained in:
2024-11-23 11:32:10 +01:00
parent c8e0b4e8bc
commit 2c9051a265
6 changed files with 192 additions and 8 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));
}