// material-ui import { useTheme } from '@mui/material/styles'; /** * if you want to use image instead of uncomment following. * * import logoIconDark from 'assets/images/logo-icon-dark.svg'; * import logoIcon from 'assets/images/logo-icon.svg'; * import { ThemeMode } from 'config'; * */ // ==============================|| LOGO ICON SVG ||============================== // const LogoIcon = () => { const theme = useTheme(); return ( /** * if you want to use image instead of svg uncomment following, and comment out element. * * Mantis * */ ); }; export default LogoIcon;