Spaces:
Sleeping
Sleeping
File size: 175 Bytes
08f8699 | 1 2 3 4 5 | /** Class-name joiner that drops falsy values. */
export function cn(...parts: Array<string | false | null | undefined>): string {
return parts.filter(Boolean).join(" ");
}
|