UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library. Compatible with React ^19.

15 lines (14 loc) 617 B
import type { ComponentPropsWithRef, ElementType } from 'react'; export type NavAppNameProperties<ET extends ElementType = 'div'> = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef<ET>; /** * Containing element for app name styles within a Nav. * @docs {@link https://design.visa.com/components/horizontal-navigation/?code_library=react | See Docs} */ declare const NavAppName: { <ET extends ElementType = "div">({ className, tag: Tag, ...remainingProps }: NavAppNameProperties<ET>): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default NavAppName;