'use client'; // @mui import { useTheme } from '@mui/material/styles'; import CardMedia from '@mui/material/CardMedia'; import Box from '@mui/material/Box'; // @project import branding from '@/branding.json'; /*************************** LOGO - ICON ***************************/ export default function LogoIcon() { const theme = useTheme(); const logoIconPath = branding.logo.logoIcon; return ( {logoIconPath ? ( ) : ( )} ); }