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 {
|
interface NavbarItem {
|
||||||
src: any;
|
src: any;
|
||||||
label: string;
|
label: string;
|
||||||
|
href: string;
|
||||||
|
to: string;
|
||||||
}
|
}
|
||||||
interface NavbarProps {
|
interface NavbarProps {
|
||||||
logo?: NavbarLogo;
|
logo?: NavbarLogo;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
interface NavbarItemProps {
|
interface NavbarItemProps {
|
||||||
label: string;
|
label: string;
|
||||||
href: string;
|
href?: string;
|
||||||
|
to?: string;
|
||||||
active?: boolean;
|
active?: boolean;
|
||||||
}
|
}
|
||||||
declare const NavbarItem: React.FC<NavbarItemProps>;
|
declare const NavbarItem: React.FC<NavbarItemProps>;
|
||||||
|
|
Loading…
Reference in New Issue