import React from 'react'; import { Input } from 'reactstrap'; import './NavBar.scss'; import Image from '../Image'; import { Notifications } from '@frontegg/react'; import { AccountDropdown } from '@frontegg/react-auth'; import classNames from 'classnames'; import { Icon } from '../Icon'; type NavBarProps = { className?: string; handleThemeChange: (value: 'light' | 'dark' | 'navbar' | 'sidebar') => void; palletType: string; settings: { label: string; state: any }[]; handleChangeNavbar: (value: string, param: string, theme: string) => void; }; const NavBar = (props: NavBarProps) => { const { className } = props; return (
); }; export default NavBar;