DocSpace-buildtools/packages/asc-web-common/components/Loaders/DialogLoader/DialogLoader.js

33 lines
836 B
JavaScript
Raw Normal View History

2021-06-30 07:22:01 +00:00
import React from "react";
import Loaders from "../../Loaders";
import StyledDialogLoader from "./StyledDialogLoader";
const DialogLoader = () => {
return (
<StyledDialogLoader>
<div className="dialog-loader-header">
<Loaders.Rectangle height="28px" width="470px" />
<Loaders.Rectangle
className="dialog-loader-icon"
height="28px"
width="28px"
/>
</div>
<div className="dialog-loader-body">
<Loaders.Rectangle height="150px" />
</div>
<div className="dialog-loader-footer">
<Loaders.Rectangle height="30px" width="120px" />
<Loaders.Rectangle
className="dialog-loader-icon"
height="30px"
width="100px"
/>
</div>
</StyledDialogLoader>
);
};
export default DialogLoader;