/* eslint-disable @typescript-eslint/no-unused-vars */ 'use client' import React from 'react' import NightModeSwitch from '../button/NightModeSwitch' import BurgerMenuIcon from '../icons/BurgerMenuIcon' type Props = { profileDropState: boolean, toggleProfileDropState: React.MouseEventHandler | undefined menuState: boolean, toggleMenuState: React.MouseEventHandler | undefined searchModalState: boolean, toggleSearchModalState: React.MouseEventHandler | undefined nightModeState: boolean, toggleNightModeState: React.MouseEventHandler | undefined } function TopBar({ profileDropState, toggleProfileDropState, menuState, toggleMenuState, searchModalState, toggleSearchModalState, nightModeState, toggleNightModeState }: Props) { return (
S
X
{/* */} {/* */}
۲,۰۰۰,۰۰۰ تومان
{/* */}
{/* */}
{/* */}
) } export default TopBar;