mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
4 lines
126 B
TypeScript
4 lines
126 B
TypeScript
export function cn(...classes: (string | false | null | undefined)[]): string {
|
|
return classes.filter(Boolean).join(" ");
|
|
}
|