import { Search } from 'lucide-react'; import { Input } from '@/components/ui/input'; import { ThemeToggle } from './theme-toggle'; interface HeaderProps { title: string; } export function Header({ title }: HeaderProps) { return (

{title}

); }