MCPcopy Create free account
hub / github.com/code-with-antonio/nodebase / Empty

Function Empty

src/components/ui/empty.tsx:5–16  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"div">)

Source from the content-addressed store, hash-verified

3import { cn } from "@/lib/utils"
4
5function Empty({ className, ...props }: React.ComponentProps<"div">) {
6 return (
7 <div
8 data-slot="empty"
9 className={cn(
10 "flex min-w-0 flex-1 flex-col items-center justify-center gap-6 rounded-lg border-dashed p-6 text-center text-balance md:p-12",
11 className
12 )}
13 {...props}
14 />
15 )
16}
17
18function EmptyHeader({ className, ...props }: React.ComponentProps<"div">) {
19 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected