import { Search } from "lucide-react" import { Label } from "@/components/ui/label" import { SidebarGroup, SidebarGroupContent, SidebarInput, } from "@/components/ui/sidebar" type SearchFormProps = React.ComponentProps<"form"> & { placeholder?: string } export function SearchForm({ placeholder = "Buscar...", ...props }: SearchFormProps) { return (
) }