* 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>
20 lines
555 B
TypeScript
20 lines
555 B
TypeScript
import { SkeletonText } from "@calcom/ui/components/skeleton";
|
|
|
|
export default function WebhookListItemSkeleton() {
|
|
return (
|
|
<div className="flex w-full justify-between p-4">
|
|
<div>
|
|
<p className="text-emphasis text-sm font-medium">
|
|
<SkeletonText className="h-4 w-56" />
|
|
</p>
|
|
<div className="mt-2.5 w-max">
|
|
<SkeletonText className="h-5 w-28" />
|
|
</div>
|
|
</div>
|
|
<div className="flex items-center space-x-4">
|
|
<SkeletonText className="h-9 w-9" />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|