mirror of
https://github.com/borbann-platform/backend-api.git
synced 2025-12-18 20:24:05 +01:00
15 lines
400 B
TypeScript
15 lines
400 B
TypeScript
/*
|
|
========================================
|
|
File: frontend/lib/utils.ts
|
|
========================================
|
|
*/
|
|
import { clsx, type ClassValue } from "clsx";
|
|
import { twMerge } from "tailwind-merge";
|
|
|
|
/** Utility function to merge Tailwind classes with clsx */
|
|
export function cn(...inputs: ClassValue[]) {
|
|
return twMerge(clsx(inputs));
|
|
}
|
|
|
|
// Add other general utility functions here if needed
|