1- import { LockClosedIcon , ShieldCheckIcon , UserCircleIcon } from "@heroicons/react/20/solid" ;
21import { ArrowLeftIcon } from "@heroicons/react/24/solid" ;
32import type { User } from "@trigger.dev/database" ;
43import { cn } from "~/utils/cn" ;
@@ -13,6 +12,9 @@ import { LinkButton } from "../primitives/Buttons";
1312import { HelpAndFeedback } from "./HelpAndFeedbackPopover" ;
1413import { SideMenuHeader } from "./SideMenuHeader" ;
1514import { SideMenuItem } from "./SideMenuItem" ;
15+ import { AvatarCircleIcon } from "~/assets/icons/AvatarCircleIcon" ;
16+ import { ShieldIcon } from "~/assets/icons/ShieldIcon" ;
17+ import { PadlockIcon } from "~/assets/icons/PadlockIcon" ;
1618
1719export function AccountSideMenu ( { user } : { user : User } ) {
1820 return (
@@ -36,22 +38,22 @@ export function AccountSideMenu({ user }: { user: User }) {
3638 < SideMenuHeader title = "Account" />
3739 < SideMenuItem
3840 name = "Profile"
39- icon = { UserCircleIcon }
40- activeIconColor = "text-indigo-500 "
41+ icon = { AvatarCircleIcon }
42+ activeIconColor = "text-text-bright "
4143 to = { accountPath ( ) }
4244 data-action = "account"
4345 />
4446 < SideMenuItem
4547 name = "Personal Access Tokens"
46- icon = { ShieldCheckIcon }
47- activeIconColor = "text-emerald-500 "
48+ icon = { ShieldIcon }
49+ activeIconColor = "text-text-bright "
4850 to = { personalAccessTokensPath ( ) }
4951 data-action = "tokens"
5052 />
5153 < SideMenuItem
5254 name = "Security"
53- icon = { LockClosedIcon }
54- activeIconColor = "text-rose-500 "
55+ icon = { PadlockIcon }
56+ activeIconColor = "text-text-bright "
5557 to = { accountSecurityPath ( ) }
5658 data-action = "security"
5759 />
0 commit comments