@visa/nova-react
Version:
Visa Product Design System Nova React library
17 lines (16 loc) • 719 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type NavAppNameProperties = {
/** @ignore */
className?: string;
/** Tag of Component */
tag?: ElementType;
};
/**
* Containing element for app name styles within a Nav.
* @docs {@link https://design.visa.com/react/components/horizontal-navigation | See Docs}
*/
declare const _default: <HTMLElementType = HTMLDivElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & NavAppNameProperties) => import("react").ReactElement;
export default _default;