DocSpace-buildtools/web/ASC.Web.Common/src/components/Loaders/ArticleHeaderLoader/ArticleHeaderLoader.js

19 lines
386 B
JavaScript
Raw Normal View History

2020-11-04 09:21:13 +00:00
import React from "react";
import styled from "styled-components";
2020-11-06 12:20:06 +00:00
import RectangleLoader from "../RectangleLoader/index";
2020-11-04 09:21:13 +00:00
2020-11-05 08:15:15 +00:00
const StyledContainer = styled.div`
2020-11-04 09:21:13 +00:00
margin-top: 13px;
margin-bottom: 10px;
`;
2020-11-06 12:38:05 +00:00
const ArticleHeaderLoader = (props) => {
2020-11-04 09:21:13 +00:00
return (
2020-11-05 08:15:15 +00:00
<StyledContainer>
2020-11-06 12:38:05 +00:00
<RectangleLoader {...props} />
2020-11-05 08:15:15 +00:00
</StyledContainer>
2020-11-04 09:21:13 +00:00
);
};
2020-11-05 08:15:15 +00:00
export default ArticleHeaderLoader;