Auto commit for build : 136
commit by: ayoub <hassani.ayoub@gmail.com> with message : update navbar
This commit is contained in:
parent
49b4f84b55
commit
4f3457fbf2
|
@ -1,10 +1,16 @@
|
|||
import React from 'react';
|
||||
import NavbarItem from './NavbarItem';
|
||||
interface NavbarLogo {
|
||||
src: any;
|
||||
slogan: string;
|
||||
}
|
||||
interface NavbarItem {
|
||||
src: any;
|
||||
label: string;
|
||||
}
|
||||
interface NavbarProps {
|
||||
logo?: NavbarLogo;
|
||||
items?: NavbarItem[];
|
||||
}
|
||||
declare const Navbar: React.FC<NavbarProps>;
|
||||
export default Navbar;
|
||||
|
|
Loading…
Reference in New Issue