Skip to content

Commit 497cd47

Browse files
committed
update icons
1 parent 99d865b commit 497cd47

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

app/[locale]/dashboard/[entityType]/[entitySlug]/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@ export default function OrgDashboardLayout({ children }: DashboardLayoutProps) {
5858
{
5959
title: 'Admin & Members',
6060
href: `/dashboard/${params.entityType}/${params.entitySlug}/admin`,
61-
icon: 'userList',
61+
icon: 'star',
6262
},
6363
]
6464
: []),
6565
{
6666
title: 'UseCases',
6767
href: `/dashboard/${params.entityType}/${params.entitySlug}/usecases`,
68-
icon: 'userList',
68+
icon: 'light',
6969
},
7070
{
7171
title: 'Profile',

components/icons.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ import {
4949
IconUser,
5050
IconUsersGroup,
5151
IconCircleCheck,
52-
IconSettings
52+
IconSettings,
53+
IconStar,
54+
IconBulb
5355
// TablerIconsProps,
5456
} from '@tabler/icons-react';
5557

@@ -109,4 +111,6 @@ export const Icons: {
109111
user: IconUser,
110112
userGroup:IconUsersGroup,
111113
setting:IconSettings,
114+
star:IconStar,
115+
light:IconBulb
112116
};

0 commit comments

Comments
 (0)