File size: 357 Bytes
fc04d53 | 1 2 3 4 5 6 7 8 9 10 11 | // @polsia:framework-owned — DO NOT EDIT. Code installed by polsia/template-next@0.3.0. Drift = commit rejected.
//
// shadcn standard cn() helper. Every shadcn primitive imports this.
import { type ClassValue, clsx } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs));
}
|