Function
EmptyTitle
({ className, ...props }: React.ComponentProps<"div">)
Source from the content-addressed store, hash-verified
| 59 | } |
| 60 | |
| 61 | function EmptyTitle({ className, ...props }: React.ComponentProps<"div">) { |
| 62 | return ( |
| 63 | <div |
| 64 | data-slot="empty-title" |
| 65 | className={cn("text-lg font-medium tracking-tight", className)} |
| 66 | {...props} |
| 67 | /> |
| 68 | ) |
| 69 | } |
| 70 | |
| 71 | function EmptyDescription({ className, ...props }: React.ComponentProps<"p">) { |
| 72 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected