web_next/weather_app/lib/utils.ts
2024-03-20 15:08:40 -05:00

6 lines
166 B
TypeScript

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