// material-ui import { useTheme } from '@mui/material/styles'; /** * 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 Logo = () => { const theme = useTheme(); return ( /** * if you want to use image instead of svg uncomment following, and comment out element. * * Berry * */ ); }; export default Logo;