| 12345678910111213141516171819202122 |
- import { Typography } from "@mui/material";
- import styled from "styled-components";
- import selectedTheme from "../../../../themes";
-
- export const FormContainer = styled.form`
- width: 335px;
- `;
- export const RegisterDescription = styled(Typography)`
- font-family: "Open Sans";
- font-style: normal;
- font-weight: 400;
- display: flex;
- align-items: center;
- color: ${selectedTheme.primaryGrayText};
- font-size: 12px;
- width: 100%;
- text-align: left;
- line-height: 16px;
- margin-top: 31px;
- margin-bottom: 2px;
- letter-spacing: 0.02em;
- `;
|