UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

10 lines (9 loc) 469 B
/// <reference types="react" /> import { IHeader } from './IHeader'; import { IChildren } from '../../../types'; /** * Atom: Header * The top bar is a header component that allows merchants to access menus, and navigate by clicking on the logo. It’s always visible at the top of interfaces. */ declare function Header({ hasLogo, className, menuMovil, options, children, classNameLogo, kindLogo, ...rest }: IHeader & IChildren): JSX.Element; export default Header;