@taruvi/navkit 0.0.35 → 0.0.36

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": "@taruvi/navkit",
3
- "version": "0.0.35",
3
+ "version": "0.0.36",
4
4
  "main": "src/App.tsx",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -3,7 +3,7 @@ import { getProfileStyles } from './Profile.styles'
3
3
  import { useNavigation } from '../../NavkitContext'
4
4
 
5
5
  const ProfileIcon = () => (
6
- <SvgIcon viewBox="0 0 22 22" sx={{ fontSize: 20, display: 'block' }}>
6
+ <SvgIcon viewBox="0 0 22 22" sx={{ fontSize: 23, display: 'block' }}>
7
7
  <path d="M10.9921 20.9849C16.511 20.9849 20.9849 16.511 20.9849 10.9921C20.9849 5.4732 16.511 0.999268 10.9921 0.999268C5.47322 0.999268 0.999283 5.4732 0.999283 10.9921C0.999283 16.511 5.47322 20.9849 10.9921 20.9849Z" stroke="#9DE5FD" fill="none" strokeWidth="1.99856" strokeLinecap="round" strokeLinejoin="round"/>
8
8
  <path d="M10.9921 11.9914C12.6478 11.9914 13.9899 10.6492 13.9899 8.99357C13.9899 7.33791 12.6478 5.99573 10.9921 5.99573C9.33644 5.99573 7.99426 7.33791 7.99426 8.99357C7.99426 10.6492 9.33644 11.9914 10.9921 11.9914Z" stroke="#9DE5FD" fill="none" strokeWidth="1.99856" strokeLinecap="round" strokeLinejoin="round"/>
9
9
  <path d="M5.99569 19.6479V17.9871C5.99569 17.457 6.20625 16.9487 6.58106 16.5739C6.95586 16.1991 7.4642 15.9885 7.99425 15.9885H13.9899C14.52 15.9885 15.0283 16.1991 15.4031 16.5739C15.7779 16.9487 15.9885 17.457 15.9885 17.9871V19.6479" stroke="#9DE5FD" fill="none" strokeWidth="1.99856" strokeLinecap="round" strokeLinejoin="round"/>
@@ -32,7 +32,7 @@ const Profile = (props: ProfileProps) => {
32
32
  return (
33
33
  <Box sx={styles.trigger} onClick={onClick}>
34
34
  {userData.pfp ? (
35
- <Box component="img" src={userData.pfp} sx={{ width: 20, height: 20, borderRadius: '50%' }} />
35
+ <Box component="img" src={userData.pfp} sx={{ width: 23, height: 23, borderRadius: '50%' }} />
36
36
  ) : (
37
37
  <ProfileIcon />
38
38
  )}
@@ -5,7 +5,7 @@ import { shortcutsStyles } from './Shortcuts.styles'
5
5
  import { useNavigation } from '../../NavkitContext'
6
6
 
7
7
  const ChatIcon = () => (
8
- <SvgIcon viewBox="-2 -2 24 24" sx={{ fontSize: 20, display: 'block', position: 'relative', top: 2 }}>
8
+ <SvgIcon viewBox="-2 -2 24 24" sx={{ fontSize: 23, display: 'block', position: 'relative', top: 2 }}>
9
9
  <path d="M18 0H2C0.9 0 0 0.9 0 2V20L4 16H18C19.1 16 20 15.1 20 14V2C20 0.9 19.1 0 18 0Z" fill="#9DE5FD"/>
10
10
  </SvgIcon>
11
11
  )
@@ -72,4 +72,4 @@ const Shortcuts = (props: ShortcutsProps) => {
72
72
  )
73
73
  }
74
74
 
75
- export default Shortcuts
75
+ export default Shortcuts