/** Tiny class joiner (no dependency). */ export function cn(...parts: Array): string { return parts.filter(Boolean).join(' '); }