9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import { type ClassValue, clsx } from "clsx";
|
|
import { toast } from "sonner";
|
|
import { twMerge } from "tailwind-merge";
|
|
import { ClipboardCheck } from "lucide-react";
|
|
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|