forked from github/plane
538d67dbd9
* chore: update border colors * chore: loading screens bg color, custom theming default values * chore: remove unnecessary images * chore: update static colors * chore: update old variable names * chore: update issue activity icon colors * chore: update user activity icon colors
36 lines
1.0 KiB
TypeScript
36 lines
1.0 KiB
TypeScript
// icons
|
|
import { Bars3Icon } from "@heroicons/react/24/outline";
|
|
|
|
type Props = {
|
|
breadcrumbs?: JSX.Element;
|
|
left?: JSX.Element;
|
|
right?: JSX.Element;
|
|
setToggleSidebar: React.Dispatch<React.SetStateAction<boolean>>;
|
|
noHeader: boolean;
|
|
};
|
|
|
|
const Header: React.FC<Props> = ({ breadcrumbs, left, right, setToggleSidebar, noHeader }) => (
|
|
<div
|
|
className={`relative flex w-full flex-shrink-0 flex-row z-10 items-center justify-between gap-y-4 border-b border-custom-border-200 bg-custom-sidebar-background-100 px-5 py-4 ${
|
|
noHeader ? "md:hidden" : ""
|
|
}`}
|
|
>
|
|
<div className="flex items-center gap-2">
|
|
<div className="block md:hidden">
|
|
<button
|
|
type="button"
|
|
className="grid h-8 w-8 place-items-center rounded border border-custom-border-200"
|
|
onClick={() => setToggleSidebar((prevData) => !prevData)}
|
|
>
|
|
<Bars3Icon className="h-5 w-5" />
|
|
</button>
|
|
</div>
|
|
{breadcrumbs}
|
|
{left}
|
|
</div>
|
|
{right}
|
|
</div>
|
|
);
|
|
|
|
export default Header;
|