[WEB-1148] chore: icons updates for consistency across platform. (#4571)
* [WEB-1148] chore: icons updates for consistency across platform. * chore: update logic for rendering custom lead icon. * chore: update Icon prop name. * chore: update `Icon` prop to `icon`.
This commit is contained in:
parent
c9586bfdcf
commit
1d7b3efb80
20 changed files with 65 additions and 94 deletions
|
|
@ -4,7 +4,7 @@ import Link from "next/link";
|
|||
import { useRouter } from "next/router";
|
||||
import { usePopper } from "react-popper";
|
||||
// icons
|
||||
import { Check, ChevronDown, CircleUserRound, LogOut, Mails, PlusSquare, Settings, UserCircle2 } from "lucide-react";
|
||||
import { Activity, Check, ChevronDown, LogOut, Mails, PlusSquare, Settings } from "lucide-react";
|
||||
// ui
|
||||
import { Menu, Transition } from "@headlessui/react";
|
||||
// types
|
||||
|
|
@ -27,7 +27,7 @@ const userLinks = (workspaceSlug: string, userId: string) => [
|
|||
key: "my_activity",
|
||||
name: "My activity",
|
||||
href: `/${workspaceSlug}/profile/${userId}`,
|
||||
icon: CircleUserRound,
|
||||
icon: Activity,
|
||||
},
|
||||
{
|
||||
key: "settings",
|
||||
|
|
@ -39,7 +39,7 @@ const userLinks = (workspaceSlug: string, userId: string) => [
|
|||
const profileLinks = (workspaceSlug: string, userId: string) => [
|
||||
{
|
||||
name: "My activity",
|
||||
icon: UserCircle2,
|
||||
icon: Activity,
|
||||
link: `/${workspaceSlug}/profile/${userId}`,
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue