feat(renderer): implement cn() helper for tailwind-merge + clsx

This commit is contained in:
2026-06-05 09:23:30 +05:30
parent ea0f3f93bf
commit e758a81c4c
+6
View File
@@ -0,0 +1,6 @@
import { clsx, type ClassValue } from 'clsx';
import { twMerge } from 'tailwind-merge';
export function cn(...inputs: ClassValue[]): string {
return twMerge(clsx(inputs));
}