// Simple className utility without external dependencies export function cn(...classes: (string | undefined | null | boolean)[]): string { return classes.filter(Boolean).join(' ') }