@visns-studio/visns-components 5.20.0 → 5.21.0

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
@@ -94,7 +94,7 @@
94
94
  "react-dom": "^17.0.0 || ^18.0.0"
95
95
  },
96
96
  "name": "@visns-studio/visns-components",
97
- "version": "5.20.0",
97
+ "version": "5.21.0",
98
98
  "description": "Various packages to assist in the development of our Custom Applications.",
99
99
  "main": "src/index.js",
100
100
  "files": [
@@ -8,6 +8,8 @@ import {
8
8
  Users,
9
9
  User,
10
10
  Search,
11
+ UserSearch,
12
+ ClipboardCheck,
11
13
  LogOut,
12
14
  Shield,
13
15
  Image,
@@ -236,6 +238,9 @@ function Navigation({
236
238
  phone: Phone,
237
239
  shield: Shield,
238
240
  signOut: LogOut,
241
+ search: Search,
242
+ userSearch: UserSearch,
243
+ clipboardCheck: ClipboardCheck,
239
244
  };
240
245
 
241
246
  // Check if the setting's URL matches the current page
@@ -302,7 +307,9 @@ function Navigation({
302
307
  target={n.target ? n.target : '_self'}
303
308
  title={n.label}
304
309
  >
305
- <IconComponent size={19} strokeWidth={2} />
310
+ {IconComponent && (
311
+ <IconComponent size={19} strokeWidth={2} />
312
+ )}
306
313
  </Link>
307
314
  </li>
308
315
  );