({ className, ...props }: React.ComponentProps<"div">)
| 82 | } |
| 83 | |
| 84 | function EmptyContent({ className, ...props }: React.ComponentProps<"div">) { |
| 85 | return ( |
| 86 | <div |
| 87 | data-slot="empty-content" |
| 88 | className={cn( |
| 89 | "flex w-full max-w-sm min-w-0 flex-col items-center gap-4 text-sm text-balance", |
| 90 | className |
| 91 | )} |
| 92 | {...props} |
| 93 | /> |
| 94 | ) |
| 95 | } |
| 96 | |
| 97 | export { |
| 98 | Empty, |