component seprator

This commit is contained in:
hamid zarghami
2026-07-14 15:36:37 +03:30
parent 9a8858cd38
commit 5d7de5602a
3 changed files with 28 additions and 12 deletions
+3
View File
@@ -0,0 +1,3 @@
export function cn(...classes: (string | boolean | undefined | null)[]): string {
return classes.filter(Boolean).join(' ')
}