mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 06:49:15 +01:00
8 lines
306 B
TypeScript
8 lines
306 B
TypeScript
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface NavItemProps extends BsPrefixPropsWithChildren {
|
|
role?: string;
|
|
}
|
|
declare type NavItem = BsPrefixRefForwardingComponent<'div', NavItemProps>;
|
|
declare const NavItem: NavItem;
|
|
export default NavItem;
|