mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-20 18:10:08 +02:00
feat(MenuItem): add missing props (#59)
This commit is contained in:
committed by
GitHub
parent
47fd13692f
commit
c84a091469
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user