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