Skip to content

Commit

Permalink
feat(MenuItem): add missing props (SteamDeckHomebrew#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
doZennn authored Nov 28, 2022
1 parent 47fd136 commit c84a091
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/deck-components/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,11 @@ export const MenuGroup: FC<MenuGroupProps> = findModuleChild((m) => {
});

export interface MenuItemProps {
onSelected?(): void;
bInteractableItem?: boolean;
onClick?(evt: Event): void;
onSelected?(evt: Event): void;
onMouseEnter?(evt: MouseEvent): void;
onMoveRight?(): void;
disabled?: boolean;
children?: ReactNode;
}
Expand Down

0 comments on commit c84a091

Please sign in to comment.