@mantajs/dashboard 0.1.10 → 0.1.12

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.
@@ -1,3 +1,5 @@
1
+ import type { ReactNode } from "react"
2
+
1
3
  export type MenuNestedItem = {
2
4
  label: string
3
5
  to: string
@@ -5,7 +7,7 @@ export type MenuNestedItem = {
5
7
  }
6
8
 
7
9
  export type MenuItem = {
8
- icon: React.ReactNode
10
+ icon: ReactNode
9
11
  label: string
10
12
  to: string
11
13
  useTranslation?: boolean