import { Box, SxProps, Theme, useTheme } from "@mui/material"; interface Props { right: boolean; } export default function ArrowLeftSP({ right }: Props) { const theme = useTheme(); return ( ); }