components

This commit is contained in:
Guy Ben-Aharon
2024-08-05 18:37:11 +03:00
parent 1314aa9128
commit d0576d1353
5 changed files with 238 additions and 234 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
return twMerge(clsx(inputs));
}