@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
16 lines (15 loc) • 645 B
TypeScript
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;
/**
* Hide "an intility service" in bottom of mobile nav.
* This branding should never be hidden for customer-facing services.
*/
hideBranding?: boolean;
}>;
/**
* Full-screen fixed mobile nav
*/
declare const NavMobile: import("react").ForwardRefExoticComponent<NavMobileProps & import("react").RefAttributes<HTMLElement>>;
export default NavMobile;