UNPKG

@fchh/fcos-suite-ui

Version:

Reusable UI components based on React and TailwindCSS for the Fab City OS Suite (initially funded by the Interfacer EU project).

10 lines (9 loc) 667 B
import { IHeader } from '../../interfaces/IHeader'; export type HeaderProps = IHeader & { backgroundImageClasses?: string; customLogo?: [string, string]; customLogoAlt?: [string, string]; logoAlwaysInTopBar?: boolean; organization?: "fchh" | "frbs"; }; export declare function Header({ className, topBarItems, toolBarItems, extendedToolBarItems, onClickHamburger, languages, onChangeLanguage, selectedLanguage, onSearch, disableAnimation, backgroundImageClasses, itemsAlwaysLight, hideSearchIcon, logoLinkTarget, logoAlwaysInTopBar, customLogo, customLogoAlt, logoClassName, organization, }: HeaderProps): import("react/jsx-runtime").JSX.Element;