@codecademy/gamut

73.3.073.3.1-alpha.0e5de6.0
dist/Menu/MenuItem.d.ts
~dist/Menu/MenuItem.d.tsModified
+2−2
Index: package/dist/Menu/MenuItem.d.ts
===================================================================
--- package/dist/Menu/MenuItem.d.ts
+++ package/dist/Menu/MenuItem.d.ts
@@ -1,10 +1,10 @@
 import { GamutIconProps } from '@codecademy/gamut-icons';
 import { ComponentProps } from 'react';
 import { ToolTipProps } from '../Tip/ToolTip';
-import { ListItem } from './elements';
+import { MenuListItem } from './elements';
 type HTMLProps = Partial<Pick<HTMLAnchorElement, 'href' | 'target' | 'rel'>>;
-type ForwardListItemProps = Omit<ComponentProps<typeof ListItem>, 'variant' | 'selected' | 'active-navlink' | 'children'>;
+type ForwardListItemProps = Omit<ComponentProps<typeof MenuListItem>, 'variant' | 'selected' | 'active-navlink' | 'children'>;
 type ToolTipLabel = string | Omit<ToolTipProps, 'id'>;
 interface MenuItemIconOnly extends HTMLProps, ForwardListItemProps {
     icon: React.ComponentType<GamutIconProps>;
     children?: never;