///
import { IButton } from '../simple-button/interfaces';
import { BoxSocialsProps } from '../box-socials/interfaces';
export interface MenuMobileProps {
menu: boolean;
pathname?: string;
defaultFonts?: IFonts;
defaultButton?: IButton;
data: ICategoriesHeader[];
defaultBoxSocials?: BoxSocialsProps;
setStateMenu: React.Dispatch;
}
export interface IFonts {
title?: string;
link?: string;
isUppercase?: boolean;
}
export interface ICategoriesHeader {
id: number;
link: string;
href?: string;
categorias?: IServices[];
logo?: string;
}
export interface IServices {
titulo: string;
subtitulo?: string;
url: string;
id?: number;
}