diff --git a/src/_digifi/layout/components/header/Navbar.tsx b/src/_digifi/layout/components/header/Navbar.tsx index 7ae4ab8..8f3908a 100644 --- a/src/_digifi/layout/components/header/Navbar.tsx +++ b/src/_digifi/layout/components/header/Navbar.tsx @@ -1,18 +1,23 @@ -import clsx from 'clsx' -import {KTIcon, toAbsoluteUrl} from '../../../helpers' -import {HeaderNotificationsMenu, HeaderUserMenu, Search, ThemeModeSwitcher} from '../../../partials' -import {useLayout} from '../../core' +import clsx from 'clsx'; +import { KTIcon, toAbsoluteUrl } from '../../../helpers'; +import { + HeaderNotificationsMenu, + HeaderUserMenu, + Search, + ThemeModeSwitcher, +} from '../../../partials'; +import { useLayout } from '../../core'; -const itemClass = 'ms-1 ms-md-4' +const itemClass = 'ms-1 ms-md-4'; const btnClass = - 'btn btn-icon btn-custom btn-icon-muted btn-active-light btn-active-color-primary w-35px h-35px' -const userAvatarClass = 'symbol-35px' -const btnIconClass = 'fs-2' + 'btn btn-icon btn-custom btn-icon-muted btn-active-light btn-active-color-primary w-35px h-35px'; +const userAvatarClass = 'symbol-35px'; +const btnIconClass = 'fs-2'; const Navbar = () => { - const {config} = useLayout() + const { config } = useLayout(); return ( -
+
{/*
*/} @@ -43,33 +48,42 @@ const Navbar = () => {
*/}
- +
- +
- + {/* */}
{config.app?.header?.default?.menu?.display && ( -
+
- +
)}
- ) -} + ); +}; -export {Navbar} +export { Navbar };