import { ActionDisplayProps } from '@/action-menu/actions/display/components/ActionDisplay'; import { getActionLabel } from '@/action-menu/utils/getActionLabel'; import { useNavigate } from 'react-router-dom'; import { isDefined } from 'twenty-shared/utils'; import { MenuItem } from 'twenty-ui/navigation'; export const ActionDropdownItem = ({ action, onClick, to, }: { action: ActionDisplayProps; onClick?: () => void; to?: string; }) => { const navigate = useNavigate(); const handleClick = () => { onClick?.(); if (isDefined(to)) { navigate(to); } }; return ( ); };