您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

RequestExchangeMessage.styled.js 1008B

123456789101112131415161718192021222324252627282930313233343536
  1. import { Box, Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../../themes";
  4. import { PrimaryButton } from "../../../Buttons/PrimaryButton/PrimaryButton";
  5. export const RequestExchangeMessageContainer = styled(Box)`
  6. display: flex;
  7. flex-direction: column;
  8. gap: 27px;
  9. width: 314px;
  10. margin-bottom: 10px;
  11. `;
  12. export const RequestExchangeMessageText = styled(Typography)`
  13. font-family: ${selectedTheme.fonts.textFont};
  14. font-weight: 600;
  15. font-size: 14px;
  16. line-height: 19px;
  17. text-align: center;
  18. `;
  19. export const RequestExchangeMessageButtonsContainer = styled(Box)`
  20. display: flex;
  21. flex-direction: row;
  22. justify-content: space-between;
  23. gap: 18px;
  24. `;
  25. export const RequestExchangeMessageButton = styled(PrimaryButton)`
  26. flex: 1;
  27. height: 45px;
  28. background: ${(props) => props.white && "white"};
  29. & button {
  30. width: 100%;
  31. font-weight: 600;
  32. font-family: ${selectedTheme.fonts.textFont};
  33. letter-spacing: 1.5px;
  34. }
  35. `;