UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

10 lines (9 loc) 489 B
import type { PropsFor } from "../../types.js"; export type NavMobileProps = PropsFor<"nav", { /** Callback for overlay click. Overlay is only rendered if a callback is supplied */ onOverlayClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void; /** @deprecated since 6.2 */ hideBranding?: boolean; }>; declare const NavMobile: import("react").ForwardRefExoticComponent<NavMobileProps & import("react").RefAttributes<HTMLElement>>; export default NavMobile;