mirror of
https://github.com/SkalaraAI/skalara-web.git
synced 2025-04-05 13:00:19 -04:00
7 lines
167 B
TypeScript
7 lines
167 B
TypeScript
import { type ClassValue, clsx } from "clsx"
|
|
import { twMerge } from "tailwind-merge"
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs))
|
|
}
|