import { CommandInput } from '@/components/ui/command'; interface SidebarSearchProps { value: string; onValueChange: (v: string) => void; } export function SidebarSearch({ value, onValueChange }: SidebarSearchProps) { return (