"use client"; import { memo } from "react"; import Button from "../button/Button"; import Logo from "./Logo"; import { cls } from "@/lib/utils"; import { getButtonProps } from "@/lib/buttonUtils"; import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import type { ButtonConfig } from "@/types/button"; interface NavbarStyleMinimalProps { // logoSrc?: string; // logoAlt?: string; brandName?: string; button: ButtonConfig; className?: string; buttonClassName?: string; buttonTextClassName?: string; } const NavbarStyleMinimal = memo( function NavbarStyleMinimal({ // logoSrc, // logoAlt = "", brandName = "Webild", button, className = "", buttonClassName = "", buttonTextClassName = "", }) { const theme = useTheme(); return ( ); } ); export default NavbarStyleMinimal;