DocSpace-client/packages/common/components/Section/sub-components/section-footer.js
2022-10-14 12:21:42 +05:00

15 lines
318 B
JavaScript

import React from "react";
import styled from "styled-components";
const StyledSectionFooter = styled.div`
margin-top: 40px;
`;
const SectionFooter = ({ children }) => {
return <StyledSectionFooter>{children}</StyledSectionFooter>;
};
SectionFooter.displayName = "SectionFooter";
export default SectionFooter;