style(lib): standardize utils file formatting

This commit is contained in:
2026-04-07 08:09:43 -04:00
parent 3b7c246a47
commit e39ba6be97

View File

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