Home / Function/ SearchForm() — ui Function Reference

SearchForm() — ui Function Reference

Architecture documentation for the SearchForm() function in search-form.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  71c8b643_4744_b715_f944_8b60b2d0ee69["SearchForm()"]
  ce0b6c68_c368_ee21_449c_4cc161db473f["search-form.tsx"]
  71c8b643_4744_b715_f944_8b60b2d0ee69 -->|defined in| ce0b6c68_c368_ee21_449c_4cc161db473f
  style 71c8b643_4744_b715_f944_8b60b2d0ee69 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/bases/base/blocks/sidebar-16/components/search-form.tsx lines 7–30

export function SearchForm({ ...props }: React.ComponentProps<"form">) {
  return (
    <form {...props}>
      <div className="relative">
        <Label htmlFor="search" className="sr-only">
          Search
        </Label>
        <SidebarInput
          id="search"
          placeholder="Type to search..."
          className="h-8 pl-7"
        />
        <IconPlaceholder
          lucide="SearchIcon"
          tabler="IconSearch"
          hugeicons="SearchIcon"
          phosphor="MagnifyingGlassIcon"
          remixicon="RiSearchLine"
          className="pointer-events-none absolute top-1/2 left-2 size-4 -translate-y-1/2 opacity-50 select-none"
        />
      </div>
    </form>
  )
}

Subdomains

Frequently Asked Questions

What does SearchForm() do?
SearchForm() is a function in the ui codebase, defined in apps/v4/registry/bases/base/blocks/sidebar-16/components/search-form.tsx.
Where is SearchForm() defined?
SearchForm() is defined in apps/v4/registry/bases/base/blocks/sidebar-16/components/search-form.tsx at line 7.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free