* Icon and IconName * Button and ButtonGroup * UserAvatar * AvatarGroup * Avatar * WizardLayout * Dialogs * EmptyScreen * showToast and TextField * Editor * Skeleton * Skeleton * TopBanner and showToast * Button again * more * perf: Remove app-store reference from @calcom/ui * more * Fixing types * Icon * Fixed casing * dropdown * more * Select * more * Badge * List * more * Divider * more * fix * fix type check * refactor * fix * fix * fix * fix * fix * fix * fix * fix type check * fix * fix * fix * fix * more * more * more * more * add index file to components/command * fix * fix * fix * fix imports * fix * fix * fix * fix * fix * fix * fix * fix build errors * fix build errors * fix --------- Co-authored-by: Keith Williams <keithwillcode@gmail.com>
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import React from "react";
|
|
|
|
import { SkeletonText } from "@calcom/ui/components/skeleton";
|
|
|
|
function SkeletonLoader() {
|
|
return (
|
|
<ul className="divide-subtle border-subtle bg-default animate-pulse divide-y rounded-md border sm:overflow-hidden">
|
|
<SkeletonItem />
|
|
<SkeletonItem />
|
|
<SkeletonItem />
|
|
</ul>
|
|
);
|
|
}
|
|
|
|
export default SkeletonLoader;
|
|
|
|
function SkeletonItem() {
|
|
return (
|
|
<li className="group flex w-full items-center justify-between px-4 py-4 sm:px-6">
|
|
<div className="flex-grow truncate text-sm">
|
|
<div className="flex">
|
|
<div className="flex flex-col space-y-2">
|
|
<SkeletonText className="h-5 w-16" />
|
|
<SkeletonText className="h-4 w-32" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div className="mt-4 hidden flex-shrink-0 sm:ml-5 sm:mt-0 lg:flex">
|
|
<div className="flex justify-between space-x-2 rtl:space-x-reverse">
|
|
<SkeletonText className="h-6 w-16" />
|
|
<SkeletonText className="h-6 w-32" />
|
|
</div>
|
|
</div>
|
|
</li>
|
|
);
|
|
}
|