import { forwardRef } from 'react'; // @mui // import { useTheme } from '@mui/material/styles'; import Link from '@mui/material/Link'; import Box, { BoxProps } from '@mui/material/Box'; // routes import { RouterLink } from 'src/routes/components'; // ---------------------------------------------------------------------- export interface LogoProps extends BoxProps { disabledLink?: boolean; } const Logo = forwardRef( ({ disabledLink = false, sx, ...other }, ref) => { // const theme = useTheme(); // const PRIMARY_LIGHT = theme.palette.primary.light; // const PRIMARY_MAIN = theme.palette.primary.main; // const PRIMARY_DARK = theme.palette.primary.dark; // OR using local (public folder) // ------------------------------------------------------- const logo = ( ); // const logo = ( // // // // // // // // // // // // // // // // // // // // // // // // ); if (disabledLink) { return logo; } return ( {logo} ); } ); export default Logo;