import PropTypes from 'prop-types'; // material-ui import { useTheme } from '@mui/material/styles'; import { ThemeMode } from 'config'; /** * if you want to use image instead of uncomment following. * * import logoDark from 'assets/images/logo-dark.svg'; * import logo from 'assets/images/logo.svg'; * */ // ==============================|| LOGO SVG ||============================== // const LogoMain = ({ reverse }) => { const theme = useTheme(); return ( /** * if you want to use image instead of svg uncomment following, and comment out element. * * Mantis * */ <> ); }; LogoMain.propTypes = { reverse: PropTypes.bool }; export default LogoMain;