mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-25 13:46:07 +00:00
44 lines
1.1 KiB
TypeScript
44 lines
1.1 KiB
TypeScript
import { SearchIcon } from "lucide-react"
|
|
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyTitle,
|
|
} from "@/styles/base-nova/ui/empty"
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupInput,
|
|
} from "@/styles/base-nova/ui/input-group"
|
|
import { Kbd } from "@/styles/base-nova/ui/kbd"
|
|
|
|
export default function EmptyInputGroup() {
|
|
return (
|
|
<Empty>
|
|
<EmptyHeader>
|
|
<EmptyTitle>404 - Not Found</EmptyTitle>
|
|
<EmptyDescription>
|
|
The page you're looking for doesn'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>
|
|
)
|
|
}
|