import { useTheme } from "@mui/material"; import MobileStepper from "@mui/material/MobileStepper"; import { hexToRgba } from "@utils/hexToRgba"; interface Props { activeStep: number; steps: number; } export default function ProgressMobileStepper({ activeStep, steps }: Props) { const theme = useTheme(); return ( } backButton={<>} /> ); }