Co-authored-by: zomars <zomars@me.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Keith Williams <keithwillcode@gmail.com>
16 lines
386 B
TypeScript
16 lines
386 B
TypeScript
import { SkeletonContainer, SkeletonText } from "@calcom/ui";
|
|
|
|
function SkeletonLoader() {
|
|
return (
|
|
<SkeletonContainer>
|
|
<div className="mr-3">
|
|
<SkeletonText className="h-4 w-28" />
|
|
<SkeletonText className="mt-3 h-11 w-full" />
|
|
<SkeletonText className="mt-2 h-11 w-full" />
|
|
</div>
|
|
</SkeletonContainer>
|
|
);
|
|
}
|
|
|
|
export default SkeletonLoader;
|