UNPKG

@coreui/react

Version:

UI Components Library for React.js

14 lines (13 loc) 361 B
import { CLinkProps } from '../link/CLink'; import { PolymorphicRefForwardingComponent } from '../../helpers'; export interface CNavLinkProps extends Omit<CLinkProps, 'idx'> { /** * @ignore */ idx?: string; /** * @ignore */ to?: string; } export declare const CNavLink: PolymorphicRefForwardingComponent<'a', CNavLinkProps>;