esameits24-26frontend/@/lib/utils.ts
AV77web 168797929c
Some checks failed
Deploy to VPS / build (push) Failing after 25s
Deploy to VPS / deploy (push) Has been skipped
installazione di shadcn/ui e dei componenti principali
2026-07-14 12:11:51 +02:00

6 lines
166 B
TypeScript

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