fix appmenu keys

This commit is contained in:
jeffvli
2025-11-17 02:58:29 -08:00
parent 1b0ea06c6b
commit c6ab0e7b8a
2 changed files with 11 additions and 8 deletions
@@ -14,13 +14,13 @@ import styles from './dropdown-menu.module.css';
import { createPolymorphicComponent } from '/@/shared/utils/create-polymorphic-component';
type MenuDividerProps = MantineMenuDividerProps;
type MenuDropdownProps = MantineMenuDropdownProps;
interface MenuItemProps extends MantineMenuItemProps {
export interface MenuItemProps extends MantineMenuItemProps {
children: ReactNode;
isDanger?: boolean;
isSelected?: boolean;
}
type MenuDividerProps = MantineMenuDividerProps;
type MenuDropdownProps = MantineMenuDropdownProps;
type MenuLabelProps = MantineMenuLabelProps;
type MenuProps = MantineMenuProps;