feat(core-ui): migrate atoms/molecules/templates from packages/ui

This commit is contained in:
2026-05-05 09:10:45 +02:00
parent 1f0a6e73bf
commit a7d37d8a0f
19 changed files with 249 additions and 2 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));
}