import { Box, useMediaQuery, useTheme } from "@mui/material"; import { FC } from "react"; import { StepButtonsBlock } from "./StepButtonsBlock"; import { CustomSelect } from "../../../../components/CustomSelect/CustomSelect"; import { CustomRadioGroup } from "../../../../components/CustomRadioGroup/CustomRadioGroup"; import { MinifiedData } from "./types"; import { ModalTitle } from "./ModalTitle"; type Props = { pipelines: MinifiedData[]; users: MinifiedData[]; handlePrevStep: () => void; handleNextStep: () => void; selectedDealUser: string | null; setSelectedDealPerformer: (value: string | null) => void; selectedPipeline: string | null; setSelectedPipeline: (value: string | null) => void; titleProps: { step: number; title: string; desc: string; toSettings: () => void; } onScroll: () => void; onScrollUsers: () => void; }; export const Pipelines: FC = ({ pipelines, selectedPipeline, setSelectedPipeline, titleProps, users, selectedDealUser, setSelectedDealPerformer, onScroll, onScrollUsers, handlePrevStep, handleNextStep, }) => { const theme = useTheme(); const isMobile = useMediaQuery(theme.breakpoints.down(600)); const isTablet = useMediaQuery(theme.breakpoints.down(1000)); return ( <> ); };