ui/components/Navbar/NavbarItem.d.ts

9 lines
196 B
TypeScript
Raw Normal View History

import React from 'react';
interface NavbarItemProps {
label: string;
href: string;
active?: boolean;
}
declare const NavbarItem: React.FC<NavbarItemProps>;
export default NavbarItem;