bam/lib/utils.ts
Felix Schulze 7671813560
All checks were successful
Lint / Lint (push) Successful in 43s
fix project settings
2025-03-05 13:11:27 +01:00

7 lines
169 B
TypeScript

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