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 DocumentationAtlas SearchAPI 4 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  e214fcf0_6409_03ea_5d51_9b87b3a90d21["empty-input-group.tsx"]
  7277b9e1_25cb_9c37_cdd3_48ed692fffa2["empty"]
  e214fcf0_6409_03ea_5d51_9b87b3a90d21 --> 7277b9e1_25cb_9c37_cdd3_48ed692fffa2
  d4ae1ebd_39ec_2b17_5c84_fbca1aec26c7["input-group"]
  e214fcf0_6409_03ea_5d51_9b87b3a90d21 --> d4ae1ebd_39ec_2b17_5c84_fbca1aec26c7
  55af24b0_c558_66f9_ada9_d25ec6a5fe81["kbd"]
  e214fcf0_6409_03ea_5d51_9b87b3a90d21 --> 55af24b0_c558_66f9_ada9_d25ec6a5fe81
  d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"]
  e214fcf0_6409_03ea_5d51_9b87b3a90d21 --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3
  style e214fcf0_6409_03ea_5d51_9b87b3a90d21 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import {
  Empty,
  EmptyContent,
  EmptyDescription,
  EmptyHeader,
  EmptyTitle,
} from "@/examples/radix/ui/empty"
import {
  InputGroup,
  InputGroupAddon,
  InputGroupInput,
} from "@/examples/radix/ui/input-group"
import { Kbd } from "@/examples/radix/ui/kbd"
import { SearchIcon } from "lucide-react"

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 DocumentationAtlas domain, SearchAPI 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/examples/radix/empty-input-group.tsx (domain: DocumentationAtlas, subdomain: SearchAPI, directory: apps/v4/examples/radix).

Analyze Your Own Codebase

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

Try Supermodel Free