// @mui import { Theme, SxProps } from '@mui/material/styles'; import Button from '@mui/material/Button'; // routes import { RouterLink } from 'src/routes/components'; // config import { PATH_AFTER_LOGIN } from 'src/config-global'; // ---------------------------------------------------------------------- type Props = { sx?: SxProps; }; export default function LoginButton({ sx }: Props) { return ( ); }