import React from 'react'; import { Bars3Icon, BellIcon } from '@heroicons/react/24/outline'; import { useUiStore } from '../../stores/uiStore'; interface TopbarProps { pageTitle?: string; breadcrumbs?: { label: string; to?: string }[]; } export default function Topbar({ pageTitle, breadcrumbs }: TopbarProps) { const toggle = useUiStore((s) => s.toggleSidebar); return (
{pageTitle &&

{pageTitle}

} {breadcrumbs && breadcrumbs.length > 0 && ( )}
A
Admin
); }