UNPKG

@aveonline/ui-react

Version:

Home base for Aveonline design system - ecosystem react

17 lines (16 loc) 445 B
/// <reference types="react" /> import { IKindLogo } from '@/ui/atoms/Logo'; declare type IModalMenuMovil = { isOpen: boolean; onClose: () => void; }; declare type IHeader = { hasLogo?: boolean; kindLogo?: IKindLogo; classNameLogo?: string; className?: string; menuMovil?: (stateMenu: IModalMenuMovil) => JSX.Element; options?: JSX.Element[]; [rest: string]: any; }; export type { IHeader, IModalMenuMovil };