Add: utils lib func for merging class names

This commit is contained in:
Aroy-Art 2025-02-19 22:24:50 +01:00
parent 29ff3a5b66
commit f482dd5cf8
Signed by: Aroy
GPG key ID: 583642324A1D2070

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))
}