From fba9c8df5139b76f539a6e55514c00917e531f49 Mon Sep 17 00:00:00 2001 From: hosead6168 Date: Mon, 29 Nov 2021 09:55:50 -0600 Subject: [PATCH] feat(layout): Added container styled component --- src/Layout/Container/styledContainer.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Layout/Container/styledContainer.jsx diff --git a/src/Layout/Container/styledContainer.jsx b/src/Layout/Container/styledContainer.jsx new file mode 100644 index 00000000..1dc85b9e --- /dev/null +++ b/src/Layout/Container/styledContainer.jsx @@ -0,0 +1,9 @@ +import styled, {css, } from 'styled-components'; + +export const StyledContainer = styled.section` + padding: 4%; + background-color: #1a1e23; + ${props => props.Primary && css` + `} +`; +