Home / File/ empty-input-group.tsx — ui Source File

empty-input-group.tsx — ui Source File

Architecture documentation for empty-input-group.tsx, a tsx file in the ui codebase. 4 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 4 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  4a0dd644_322c_4be6_f96e_9380720d850c["empty-input-group.tsx"]
  d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"]
  4a0dd644_322c_4be6_f96e_9380720d850c --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3
  347cfa6b_4d3b_aeb9_f88c_873646e39bf0["empty"]
  4a0dd644_322c_4be6_f96e_9380720d850c --> 347cfa6b_4d3b_aeb9_f88c_873646e39bf0
  41df1c2c_a3b4_dc22_8bc9_310fe8b6ba9b["input-group"]
  4a0dd644_322c_4be6_f96e_9380720d850c --> 41df1c2c_a3b4_dc22_8bc9_310fe8b6ba9b
  eef72ee8_5107_2380_708f_cd0adbb65f49["kbd"]
  4a0dd644_322c_4be6_f96e_9380720d850c --> eef72ee8_5107_2380_708f_cd0adbb65f49
  style 4a0dd644_322c_4be6_f96e_9380720d850c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { SearchIcon } from "lucide-react"

import {
  Empty,
  EmptyContent,
  EmptyDescription,
  EmptyHeader,
  EmptyTitle,
} from "@/registry/new-york-v4/ui/empty"
import {
  InputGroup,
  InputGroupAddon,
  InputGroupInput,
} from "@/registry/new-york-v4/ui/input-group"
import { Kbd } from "@/registry/new-york-v4/ui/kbd"

export default function EmptyInputGroup() {
  return (
    <Empty>
      <EmptyHeader>
        <EmptyTitle>404 - Not Found</EmptyTitle>
        <EmptyDescription>
          The page you&apos;re looking for doesn&apos;t exist. Try searching for
          what you need below.
        </EmptyDescription>
      </EmptyHeader>
      <EmptyContent>
        <InputGroup className="sm:w-3/4">
          <InputGroupInput placeholder="Try searching for pages..." />
          <InputGroupAddon>
            <SearchIcon />
          </InputGroupAddon>
          <InputGroupAddon align="inline-end">
            <Kbd>/</Kbd>
          </InputGroupAddon>
        </InputGroup>
        <EmptyDescription>
          Need help? <a href="#">Contact support</a>
        </EmptyDescription>
      </EmptyContent>
    </Empty>
  )
}

Subdomains

Functions

Dependencies

  • empty
  • input-group
  • kbd
  • lucide-react

Frequently Asked Questions

What does empty-input-group.tsx do?
empty-input-group.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in empty-input-group.tsx?
empty-input-group.tsx defines 1 function(s): EmptyInputGroup.
What does empty-input-group.tsx depend on?
empty-input-group.tsx imports 4 module(s): empty, input-group, kbd, lucide-react.
Where is empty-input-group.tsx in the architecture?
empty-input-group.tsx is located at apps/v4/registry/new-york-v4/examples/empty-input-group.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/examples).

Analyze Your Own Codebase

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

Try Supermodel Free