Auto commit for build : 142
commit by: ayoub <hassani.ayoub@gmail.com> with message : update navbar
This commit is contained in:
parent
464b095255
commit
ef9b8b044d
|
@ -7,6 +7,8 @@ interface NavbarLogo {
|
|||
interface NavbarItem {
|
||||
src: any;
|
||||
label: string;
|
||||
href: string;
|
||||
to: string;
|
||||
}
|
||||
interface NavbarProps {
|
||||
logo?: NavbarLogo;
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
import React from 'react';
|
||||
interface NavbarItemProps {
|
||||
label: string;
|
||||
href: string;
|
||||
href?: string;
|
||||
to?: string;
|
||||
active?: boolean;
|
||||
}
|
||||
declare const NavbarItem: React.FC<NavbarItemProps>;
|
||||
|
|
Loading…
Reference in New Issue