Skip to content

Commit

Permalink
Update icons
Browse files Browse the repository at this point in the history
  • Loading branch information
ericboucher committed Aug 1, 2024
1 parent 6aefc70 commit 1aa1338
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 26 deletions.
26 changes: 18 additions & 8 deletions apps/frontend/components/NavBar/NavBarButtons.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { faClipboard } from '@fortawesome/free-regular-svg-icons';
import {
AssignmentTurnedIn,
ContentPaste,
Home,
Logout,
Person,
} from '@mui/icons-material';
faClipboardCheck,
IconDefinition,
} from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
import { Home, Logout, Person } from '@mui/icons-material';
import { Stack, useTheme } from '@mui/material';
import Button from '@mui/material/Button';
import Typography from '@mui/material/Typography';
Expand Down Expand Up @@ -34,13 +34,23 @@ const links = [
key: 2,
linkTo: '/report',
textId: 'navigation.reports',
icon: <ContentPaste />,
icon: (
<FontAwesomeIcon
icon={faClipboard as IconDefinition}
style={{ color: colors.color3, fontSize: '1rem' }}
/>
),
},
{
key: 3,
linkTo: '/forms/search',
textId: 'navigation.forms.header',
icon: <AssignmentTurnedIn />,
icon: (
<FontAwesomeIcon
icon={faClipboardCheck}
style={{ color: colors.color3, fontSize: '1rem' }}
/>
),
},
];

Expand Down
1 change: 1 addition & 0 deletions apps/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.11.11",
Expand Down
53 changes: 35 additions & 18 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1aa1338

Please sign in to comment.