* 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>
18 lines
672 B
TypeScript
18 lines
672 B
TypeScript
import { SkeletonAvatar, SkeletonText, SkeletonButton } from "@calcom/ui/components/skeleton";
|
|
|
|
export function StepConnectionLoader() {
|
|
return (
|
|
<ul className="bg-default divide-subtle border-subtle divide-y rounded-md border p-0 dark:bg-black">
|
|
{Array.from({ length: 4 }).map((_item, index) => {
|
|
return (
|
|
<li className="flex w-full flex-row justify-center border-b-0 py-6" key={index}>
|
|
<SkeletonAvatar className="mx-6 h-8 w-8 px-4" />
|
|
<SkeletonText className="ml-1 mr-4 mt-3 h-5 w-full" />
|
|
<SkeletonButton className="mr-6 h-8 w-20 rounded-md p-5" />
|
|
</li>
|
|
);
|
|
})}
|
|
</ul>
|
|
);
|
|
}
|