decentraland-ui
Version:
Decentraland's UI components and styles
13 lines (12 loc) • 329 B
text/typescript
export type SubMenuItemProps = {
title: string
description: string
href: string
eventTrackingName: string
isExternal?: boolean
className?: string
onClickMenuOption?: (
event: React.MouseEvent<HTMLElement, MouseEvent>,
options: { eventTrackingName: string; url?: string; isExternal?: boolean }
) => void
}