1export function cn(...parts: Array<string | false | null | undefined>): string {2 return parts.filter(Boolean).join(' ');3}4