"use client" import * as React from "react" import { cn } from "@/lib/utils" import { toast } from "@/ui/toast" interface DocsSearchProps extends React.HTMLAttributes {} export function DocsSearch({ className, ...props }: DocsSearchProps) { function onSubmit(event: React.SyntheticEvent) { event.preventDefault() return toast({ title: "Not implemented", message: "We're still working on the search.", type: "error", }) } return (
K
) }