semantic update

This commit is contained in:
2026-02-20 10:41:15 +03:00
parent 43814511ee
commit 01efc9dae1
16 changed files with 1856 additions and 1326 deletions

View File

@@ -1,4 +1,9 @@
// [DEF:Utils:Module]
/**
* @TIER: TRIVIAL
* @PURPOSE: General utility functions (class merging)
* @LAYER: Infra
*
* Merges class names into a single string.
* @param {...(string | undefined | null | false)} inputs
* @returns {string}
@@ -6,3 +11,4 @@
export function cn(...inputs) {
return inputs.filter(Boolean).join(" ");
}
// [/DEF:Utils:Module]