import { Box, Typography, useTheme } from "@mui/material"; import ButtonsOptions from "../ButtonsOptions"; import SwitchTextField from "./switchTextField"; import React from "react"; import CustomTextField from "@ui_kit/CustomTextField"; import InfoIcon from "../../../assets/icons/InfoIcon"; interface Props { totalIndex: number; } export default function OwnTextField({ totalIndex }: Props) { const theme = useTheme(); const [switchState, setSwitchState] = React.useState("setting"); const SSHC = (data: string) => { setSwitchState(data); }; return ( <> Пользователю будет дано поле для ввода значения{" "} ); }