wip: new onboarding

This commit is contained in:
2023-10-14 15:19:49 +07:00
parent 0777c483e5
commit 620e763380
60 changed files with 153 additions and 157 deletions

View File

@@ -126,23 +126,23 @@ export function LocalNetworkWidget() {
{isFetchingNextPage ? (
<>
<span>Loading...</span>
<LoaderIcon className="h-5 w-5 animate-spin text-neutral-900 dark:text-neutral-100" />
<LoaderIcon className="h-5 w-5 animate-spin" />
</>
) : hasNextPage ? (
<>
<ArrowRightCircleIcon className="h-5 w-5 text-neutral-900 dark:text-neutral-100" />
<ArrowRightCircleIcon className="h-5 w-5" />
<span>Load more</span>
</>
) : (
<>
<ArrowRightCircleIcon className="h-5 w-5 text-neutral-900 dark:text-neutral-100" />
<ArrowRightCircleIcon className="h-5 w-5" />
<span>Nothing more to load</span>
</>
)}
</button>
) : null}
</div>
<div className="h-16" />
<div className="h-14" />
</VList>
)}
</div>