Fix #1076: Change User icon into User-circle on "Companies" & Settings (#1092)

* Fix #1038: Logout button should be change to gray

* Fix #1059: Replace Inbox by Notifications in navigation

* Fixed lint issues

* Fixed the import

* Fix #1076: Change User icon into User-circle on Companies & Settings
This commit is contained in:
Pranav
2023-08-06 03:33:34 +05:30
committed by GitHub
parent 5166859f80
commit 2d35db14c0
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import {
IconCalendarEvent,
IconLink,
IconMap,
IconUser,
IconUserCircle,
IconUsers,
} from '@/ui/icon/index';
import { Entity } from '@/ui/input/relation-picker/types/EntityTypeForSelect';
@ -48,7 +48,7 @@ export const companyViewFields: ViewFieldDefinition<ViewFieldMetadata>[] = [
{
id: 'accountOwner',
columnLabel: 'Account Owner',
columnIcon: <IconUser />,
columnIcon: <IconUserCircle />,
columnSize: 150,
columnOrder: 3,
metadata: {

View File

@ -8,7 +8,7 @@ import {
IconColorSwatch,
IconLogout,
IconSettings,
IconUser,
IconUserCircle,
IconUsers,
} from '@/ui/icon/index';
import NavItem from '@/ui/navbar/components/NavItem';
@ -32,7 +32,7 @@ export function SettingsNavbar() {
<NavItem
label="Profile"
to="/settings/profile"
icon={<IconUser size={theme.icon.size.md} />}
icon={<IconUserCircle size={theme.icon.size.md} />}
active={
!!useMatch({
path: useResolvedPath('/settings/profile').pathname,