@bothub-chat/ui
Version:
Bothub UI Components
10 lines (9 loc) • 410 B
TypeScript
import React from 'react';
import { SidebarMenuNavLinkStyled, SidebarMenuNavLinkStyledProps } from './styled';
export type SidebarMenuNavLinkProps = Omit<React.ComponentProps<typeof SidebarMenuNavLinkStyled>, keyof SidebarMenuNavLinkStyledProps> & {
as?: any;
to?: string;
active?: boolean;
icon?: React.ReactNode;
};
export declare const SidebarMenuNavLink: React.FC<SidebarMenuNavLinkProps>;