biohazard-vfx/lib/utils.ts
nicholai eaa6c3b8e3
Some checks are pending
Build and Push to Docker Hub / Push Docker image to Docker Hub (push) Waiting to run
Build and Push Docker Image / build-and-push (push) Waiting to run
more updates
2025-09-08 20:19:14 -06:00

7 lines
164 B
TypeScript

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