♻️ Restructure ui package (#991)

This commit is contained in:
Luke Vella 2024-01-24 16:51:19 +07:00 committed by GitHub
parent 458a178f65
commit a174841a6a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 79 additions and 54 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));
}