Function
EmptyDescription
({ className, ...props }: React.ComponentProps<"p">)
Source from the content-addressed store, hash-verified
| 92 | } |
| 93 | |
| 94 | function EmptyDescription({ className, ...props }: React.ComponentProps<"p">) { |
| 95 | return ( |
| 96 | <div |
| 97 | className={cn( |
| 98 | "text-muted-foreground text-sm/relaxed [&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4 [[data-slot=empty-title]+&]:mt-1", |
| 99 | className, |
| 100 | )} |
| 101 | data-slot="empty-description" |
| 102 | {...props} |
| 103 | /> |
| 104 | ); |
| 105 | } |
| 106 | |
| 107 | function EmptyContent({ className, ...props }: React.ComponentProps<"div">) { |
| 108 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected