@campxdev/shared 1.10.53 → 1.10.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/shared",
3
- "version": "1.10.53",
3
+ "version": "1.10.54",
4
4
  "main": "./exports.ts",
5
5
  "scripts": {
6
6
  "start": "react-scripts start",
@@ -1,4 +1,3 @@
1
- import HelpCenterIcon from '@mui/icons-material/HelpCenter'
2
1
  import { Box, IconButton, styled } from '@mui/material'
3
2
  import InstitutionsDropDown from '../../../Institutions/InstitutionsDropdown'
4
3
  import CogWheelMenu from './CogWheelMenu'
@@ -21,8 +20,9 @@ export default function HeaderActions({
21
20
  <IconButton
22
21
  href={'https://campx.atlassian.net/servicedesk/customer/portal/2'}
23
22
  target="_blank"
23
+ sx={{ color: 'black', padding: '0px' }}
24
24
  >
25
- <HelpCenterIcon sx={{ width: '30px', height: '30px' }} />
25
+ Help ?
26
26
  </IconButton>
27
27
  {cogWheelMenu?.length ? <CogWheelMenu menu={cogWheelMenu} /> : null}
28
28
  <UserBox fullName={fullName} actions={userBoxActions} />