mirror of
https://github.com/aljazceru/goose.git
synced 2026-01-17 21:34:23 +01:00
6 lines
168 B
TypeScript
6 lines
168 B
TypeScript
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
} |