| 123456789101112131415161718192021222324252627282930313233343536 |
- import { Box, Grid, Typography } from "@mui/material";
- import styled from "styled-components";
- import selectedTheme from "../../../../themes";
- import ThumbUpIcon from "@mui/icons-material/ThumbUp";
- import ThumbDownIcon from "@mui/icons-material/ThumbDown";
-
- export const ReviewQuoteContainer = styled(Box)`
- position: relative;
- padding-top: 2px;
- padding-bottom: 2px;
- margin: 0;
- display: flex;
- flex-direction: row;
- margin-top: 18px;
- align-items: center;
- justify-content: start;
- margin-bottom: 15px;
- `;
- export const ThumbContainer = styled(Grid)`
- max-width: 20px;
- `;
- export const ReviewQuoteTextContainer = styled(Grid)``;
- export const ReviewQuoteText = styled(Typography)`
- font-family: ${selectedTheme.fonts.textFont};
- font-size: 16px;
- color: ${selectedTheme.colors.primaryDarkText};
- position: relative;
- left: 10px;
- `;
- export const ThumbUp = styled(ThumbUpIcon)`
- position: relative;
- `;
- export const ThumbDown = styled(ThumbDownIcon)`
- position: relative;
- top: 3px;
- `;
|