import Box from "@mui/material/Box"; import { IconButton, Typography, useTheme } from "@mui/material"; import EditPencil from "@icons/EditPencil"; import { FC } from "react"; type SettingItemHeaderProps = { title: string; step: number; setStep: () => void; }; export const SettingItemHeader: FC = ({ title, step, setStep, }) => { const theme = useTheme(); return ( {step} этап {title} ); };