Function
Empty
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 3 | import { cn } from "@/lib/utils" |
| 4 | |
| 5 | function 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 | |
| 18 | function EmptyHeader({ className, ...props }: React.ComponentProps<"div">) { |
| 19 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected