import { SearchIcon } from "lucide-react"; import { Button } from "./ui/button"; export default function ThemesSearch({ input, setInput }: { input: string; setInput: (input: string) => void; }) { return (
setInput(e.target.value)} placeholder="Search themes" className="w-full bg-transparent border-none focus:outline-none focus:border-none focus:ring-0 dark:text-white text-black" />
); }