20 lines
535 B
TypeScript
20 lines
535 B
TypeScript
import { SkeletonText } from "@calcom/ui";
|
|
|
|
export default function WebhookListItemSkeleton() {
|
|
return (
|
|
<div className="flex w-full justify-between p-4">
|
|
<div>
|
|
<p className="text-sm font-medium text-gray-900">
|
|
<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>
|
|
);
|
|
}
|