'use client'; /** * SearchBar — Styled search input for the TopNav. * * Features: * - Search icon (SVG) on the left * - "Search" placeholder text * - Visual-only — no search logic implementation * - Uses dark theme colors from theme.ts * * Requirements: 2.3 */ export interface SearchBarProps { className?: string; } export default function SearchBar({ className }: SearchBarProps) { return (