Files
BrowserOS/apps/agent/lib/utils.ts
Dani Akash 025780faea feat: agent code in monorepo (#137)
* feat: added agent code to monorepo

* chore: update bun lock file
2025-12-29 18:39:52 +05:30

10 lines
185 B
TypeScript

import { type ClassValue, clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
/**
* @public
*/
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}