import { SearchIcon } from "lucide-react"; import { Button } from "./ui/button"; import { ny } from "@/lib/utils"; const TAGS = [ "all", "color-scheme", "utility", ]; export default function ThemesSearch({ input, setInput, tags, setTags }: { input: string; setInput: (input: string) => void; tags: string[]; setTags: (tags: 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" />
{TAGS.map((tag) => ( ))}
); }