'use client'; import PropTypes from 'prop-types'; // @next import NextLink from 'next/link'; // @mui import { useTheme } from '@mui/material/styles'; import ButtonBase from '@mui/material/ButtonBase'; // @project import { generateFocusVisibleStyles } from '@/utils/CommonFocusStyle'; import LogoMain from './LogoMain'; import LogoIcon from './LogoIcon'; /*************************** MAIN - LOGO ***************************/ export default function LogoSection({ isIcon, sx, to }) { const theme = useTheme(); const palette = theme?.vars ? theme.vars.palette : theme.palette; return ( {isIcon ? : } ); } LogoSection.propTypes = { isIcon: PropTypes.bool, sx: PropTypes.any, to: PropTypes.string };