feat(ui): set up Atomic Design structure with Tailwind v4

This commit is contained in:
2026-04-06 14:56:16 +02:00
parent d13f7d166e
commit ec08eb1d74
9 changed files with 76 additions and 4 deletions

View File

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