import { ActionIcon, Avatar, Menu } from "@mantine/core"; import { NextLink } from "@mantine/next"; import { DoorExit, Link, Moon } from "tabler-icons-react"; import authService from "../../services/auth.service"; import ToggleThemeButton from "./ToggleThemeButton"; const ActionAvatar = () => { return ( My account } > Shares { authService.signOut(); }} icon={} > Sign out Settings }> ); }; export default ActionAvatar;