UNPKG

@intility/bifrost-react

Version:

React library for Intility's design system, Bifrost.

11 lines (10 loc) 427 B
import type { PropsFor } from "../../types.js"; type NavLogoProps = PropsFor<"div", { /** * Logo graphic, either as a `string` used in `<img src="string" />` or a * custom logo element. Defaults to intlity "it" svg logo. */ logo?: React.ReactNode; }>; declare const NavLogo: import("react").ForwardRefExoticComponent<NavLogoProps & import("react").RefAttributes<HTMLDivElement>>; export default NavLogo;