dify/web/app/components/explore/installed-app-navigation/pagination-skeleton.tsx
非法操作 c1fdd6fb78
chore: paginate installed apps (#39739)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
Co-authored-by: yyh <92089059+lyzno1@users.noreply.github.com>
2026-07-29 09:51:34 +00:00

10 lines
377 B
TypeScript

const skeletonClassName =
'animate-pulse rounded bg-text-quaternary opacity-20 motion-reduce:animate-none'
export const InstalledAppPaginationSkeleton = () => (
<div aria-hidden className="flex h-8 items-center gap-2 px-2 py-0.5">
<div className={`${skeletonClassName} size-5 shrink-0 rounded-md`} />
<div className={`${skeletonClassName} h-3 w-24`} />
</div>
)