Browse Source

create container component

AykutSarac 3 năm trước cách đây
mục cha
commit
aa01c07f25
1 tập tin đã thay đổi với 21 bổ sung0 xóa
  1. 21 0
      src/components/Container/index.tsx

+ 21 - 0
src/components/Container/index.tsx

@@ -0,0 +1,21 @@
+import React from "react";
+import styled from "styled-components";
+
+interface ContainerProps {
+  reverse?: boolean;
+}
+
+const StyledContainer = styled.div<{ reverse: boolean }>`
+  display: flex;
+  justify-content: space-between;
+  gap: 50px;
+  align-items: center;
+  width: 75%;
+  margin: 40px auto;
+  flex-direction: ${({ reverse }) => reverse && 'row-reverse'};
+  line-height: 1.2;
+`;
+
+export const Container: React.FC<ContainerProps> = ({ children, reverse = false }) => {
+  return <StyledContainer reverse={reverse}>{children}</StyledContainer>;
+};