diff --git a/src/Components/LoggedIn/Content/Tariffs/ModalMini/index.tsx b/src/Components/LoggedIn/Content/Tariffs/ModalMini/index.tsx index 15584df..43d8e8e 100644 --- a/src/Components/LoggedIn/Content/Tariffs/ModalMini/index.tsx +++ b/src/Components/LoggedIn/Content/Tariffs/ModalMini/index.tsx @@ -1,5 +1,5 @@ import * as React from "react"; -import { Box, Modal, Fade, Backdrop, Typography, Button } from "@mui/material"; +import { Box, Modal, Fade, Backdrop, Typography, Button, TextField } from "@mui/material"; import theme from "../../../../../theme"; export interface MWProps { @@ -9,7 +9,7 @@ export interface MWProps { } const ModalMini = ({open, variant, close}: MWProps ) => { - const variants = [ "Количество", "Срок" ]; + const variants = [ "Количество", "Срок (дней)" ]; const units = [ "", "дней" ]; return ( @@ -41,50 +41,40 @@ const ModalMini = ({open, variant, close}: MWProps ) => { justifyContent: "center", alignItems: "center", }}> - - - { variants[ variant ] }: - - - 5 { units[ variant ] } - - + + + - - - Цена: - - - 100500 $ - -