| 123456789101112131415161718192021222324 |
- import { Box, Typography } from "@mui/material";
- import styled from "styled-components";
- import selectedTheme from "../../../themes";
-
- export const PrivacyPolicySectionContainer = styled(Box)`
- margin-top: 25px;
- `;
- export const PrivacyPolicySectionTitle = styled(Typography)`
- font-family: "Open Sans";
- font-style: normal;
- font-weight: 600;
- font-size: 24px;
- line-height: 33px;
- color: ${selectedTheme.primaryPurple};
- margin-bottom: 18px;
- `;
- export const PrivacyPolicySectionText = styled(Typography)`
- font-family: "Open Sans";
- font-style: normal;
- font-weight: 400;
- font-size: 16px;
- line-height: 22px;
- color: ${selectedTheme.primaryGrayText};
- `;
|