Function
EmptyDescription
({ className, ...props }: React.ComponentProps<"p">)
Source from the content-addressed store, hash-verified
| 69 | } |
| 70 | |
| 71 | function EmptyDescription({ className, ...props }: React.ComponentProps<"p">) { |
| 72 | return ( |
| 73 | <div |
| 74 | data-slot="empty-description" |
| 75 | className={cn( |
| 76 | "text-muted-foreground [&>a:hover]:text-primary text-sm/relaxed [&>a]:underline [&>a]:underline-offset-4", |
| 77 | className |
| 78 | )} |
| 79 | {...props} |
| 80 | /> |
| 81 | ) |
| 82 | } |
| 83 | |
| 84 | function EmptyContent({ className, ...props }: React.ComponentProps<"div">) { |
| 85 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected