mirror of
https://github.com/langgenius/dify.git
synced 2026-08-28 20:33:21 +08:00
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>
10 lines
377 B
TypeScript
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>
|
|
)
|