Update frontends/nextjs/src/components/ui/molecules/overlay/DropdownMenu/MenuItem.tsx

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
2025-12-29 17:13:54 +00:00
committed by GitHub
parent ce6daf533b
commit edc6e3e448

View File

@@ -1,11 +1,13 @@
'use client'
import { forwardRef, ReactNode } from 'react'
import { ComponentPropsWithoutRef, forwardRef, ReactNode } from 'react'
import { Box, Typography } from '@mui/material'
import { DropdownMenuItem, type DropdownMenuItemProps } from '../DropdownMenu'
import { DropdownMenuItem } from '../DropdownMenu'
interface MenuItemProps extends DropdownMenuItemProps {
type DropdownMenuItemComponentProps = ComponentPropsWithoutRef<typeof DropdownMenuItem>
interface MenuItemProps extends DropdownMenuItemComponentProps {
description?: ReactNode
detail?: ReactNode
}