move button component to ui package

This commit is contained in:
Gregor Vostrak
2025-11-12 13:22:49 +01:00
parent 86d0497000
commit e7703aef64
21 changed files with 1100 additions and 529 deletions

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.filter(Boolean)));
}