@yusr_systems/ui 3.1.3 → 3.1.4

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/dist/index.d.ts CHANGED
@@ -1041,13 +1041,14 @@ export declare interface SidebarLogoProps {
1041
1041
  alt?: string;
1042
1042
  }
1043
1043
 
1044
- export declare function SideBarMainMenu({ items }: {
1044
+ export declare function SideBarMainMenu({ items, LinkComponent, }: {
1045
1045
  items: {
1046
1046
  title: string;
1047
1047
  url: string;
1048
1048
  icon?: React.ReactNode;
1049
1049
  hasAuth: boolean;
1050
1050
  }[];
1051
+ LinkComponent?: React.ElementType;
1051
1052
  }): JSX.Element;
1052
1053
 
1053
1054
  export declare function SidebarMenu({ className, ...props }: React_2.ComponentProps<"ul">): JSX.Element;