@cerberus-design/react
Version:
The Cerberus Design React component library.
17 lines (16 loc) • 520 B
TypeScript
import { AnchorHTMLAttributes, ElementType } from 'react';
/**
* This module contains the NavMenuLink component.
* @module
*/
export interface NavMenuLinkProps extends AnchorHTMLAttributes<HTMLAnchorElement> {
/**
* The element type to render as. Recommended to use for Next apps with the
* `Link` component.
*/
as?: ElementType;
}
/**
* @deprecated use the {@link Menu} family instead
*/
export declare function NavMenuLink(props: NavMenuLinkProps): import("react/jsx-runtime").JSX.Element;