@@ -4,12 +4,6 @@ import {
4
4
type Theme ,
5
5
css ,
6
6
} from "@emotion/react" ;
7
- import AccountIcon from "@mui/icons-material/AccountCircleOutlined" ;
8
- import BugIcon from "@mui/icons-material/BugReportOutlined" ;
9
- import ChatIcon from "@mui/icons-material/ChatOutlined" ;
10
- import LogoutIcon from "@mui/icons-material/ExitToAppOutlined" ;
11
- import LaunchIcon from "@mui/icons-material/LaunchOutlined" ;
12
- import DocsIcon from "@mui/icons-material/MenuBook" ;
13
7
import Divider from "@mui/material/Divider" ;
14
8
import MenuItem from "@mui/material/MenuItem" ;
15
9
import type { SvgIconProps } from "@mui/material/SvgIcon" ;
@@ -19,7 +13,12 @@ import { CopyButton } from "components/CopyButton/CopyButton";
19
13
import { ExternalImage } from "components/ExternalImage/ExternalImage" ;
20
14
import { Stack } from "components/Stack/Stack" ;
21
15
import { usePopover } from "components/deprecated/Popover/Popover" ;
22
- import { MonitorDownIcon } from "lucide-react" ;
16
+ import { BookOpenTextIcon } from "lucide-react" ;
17
+ import { BugIcon } from "lucide-react" ;
18
+ import { CircleUserIcon } from "lucide-react" ;
19
+ import { LogOutIcon } from "lucide-react" ;
20
+ import { MessageSquareIcon } from "lucide-react" ;
21
+ import { MonitorDownIcon , SquareArrowOutUpRightIcon } from "lucide-react" ;
23
22
import type { FC } from "react" ;
24
23
import { Link } from "react-router-dom" ;
25
24
@@ -53,9 +52,9 @@ export const UserDropdownContent: FC<UserDropdownContentProps> = ({
53
52
case "bug" :
54
53
return < BugIcon css = { styles . menuItemIcon } /> ;
55
54
case "chat" :
56
- return < ChatIcon css = { styles . menuItemIcon } /> ;
55
+ return < MessageSquareIcon css = { styles . menuItemIcon } /> ;
57
56
case "docs" :
58
- return < DocsIcon css = { styles . menuItemIcon } /> ;
57
+ return < BookOpenTextIcon css = { styles . menuItemIcon } /> ;
59
58
case "star" :
60
59
return < GithubStar css = { styles . menuItemIcon } /> ;
61
60
default :
@@ -86,13 +85,13 @@ export const UserDropdownContent: FC<UserDropdownContentProps> = ({
86
85
87
86
< Link to = "/settings/account" css = { styles . link } >
88
87
< MenuItem css = { styles . menuItem } onClick = { onPopoverClose } >
89
- < AccountIcon css = { styles . menuItemIcon } />
88
+ < CircleUserIcon css = { styles . menuItemIcon } />
90
89
< span css = { styles . menuItemText } > { Language . accountLabel } </ span >
91
90
</ MenuItem >
92
91
</ Link >
93
92
94
93
< MenuItem css = { styles . menuItem } onClick = { onSignOut } >
95
- < LogoutIcon css = { styles . menuItemIcon } />
94
+ < LogOutIcon css = { styles . menuItemIcon } />
96
95
< span css = { styles . menuItemText } > { Language . signOutLabel } </ span >
97
96
</ MenuItem >
98
97
@@ -126,7 +125,7 @@ export const UserDropdownContent: FC<UserDropdownContentProps> = ({
126
125
target = "_blank"
127
126
rel = "noreferrer"
128
127
>
129
- { buildInfo ?. version } < LaunchIcon />
128
+ { buildInfo ?. version } < SquareArrowOutUpRightIcon />
130
129
</ a >
131
130
</ Tooltip >
132
131
0 commit comments