import { SvgIconProps } from '@material-ui/core/SvgIcon'; import { ComponentType } from 'react'; import { PureMessageKey } from '@gecogvidanto/shared'; import { langType } from '../locale'; /** * Description of a menu entry. */ export default interface MenuEntryDescription { icon: ComponentType; title: PureMessageKey; action: string | ((target: EventTarget & HTMLElement) => void); }