import PropTypes from 'prop-types'; import { useRouter } from 'next-nprogress-bar'; // mui import { Box } from '@mui/material'; export const Logo = () => { const { push } = useRouter(); return ( img': { height:36, width: 'auto' } }} onClick={() => push('/')} > logo ); }; Logo.propTypes = { sx: PropTypes.object, isMobile: PropTypes.bool }; export default Logo;