import { ArrowBack } from '@mui/icons-material'; import type { IconButtonProps } from '@mui/material'; import { IconButton, useTheme } from '@mui/material'; export const BackButton: React.FC = ({ onClick }) => { const theme = useTheme(); return ( ); };