Auto commit for build : 142

commit by: ayoub <hassani.ayoub@gmail.com>

 with message : update navbar
This commit is contained in:
ayoub 2025-05-08 00:54:15 +02:00
parent 464b095255
commit ef9b8b044d
3 changed files with 5 additions and 2 deletions

View File

@ -7,6 +7,8 @@ interface NavbarLogo {
interface NavbarItem {
src: any;
label: string;
href: string;
to: string;
}
interface NavbarProps {
logo?: NavbarLogo;

View File

@ -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>;

File diff suppressed because one or more lines are too long