@visa/nova-react
Version:
Visa Product Design System Nova React library
26 lines (25 loc) • 927 B
TypeScript
import { ElementType, ForwardedRef } from 'react';
export type NavProperties = {
/** Alternate */
alternate?: boolean;
/** @ignore */
className?: string;
/** Drawer */
drawer?: boolean;
/** Orientation */
orientation?: 'horizontal' | 'vertical';
/** Tag of Component */
tag?: ElementType;
};
/**
* Menu or panel at the top or next to page content that links to important pages or features.
* @docs {@link https://design.visa.com/react/components/nav | See Docs}
* @vgar TODO
* @wcag TODO
* @related tab, tabs
*/
declare const _default: <HTMLElementType = HTMLElement>(props: {
children?: import("react").ReactNode | import("react").ReactNode[];
ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & NavProperties) => import("react").ReactElement;
export default _default;