---
title: MenuItemOptions
source: https://github.com/remix-run/remix/blob/main/packages/ui/src/menu/primitives.tsx#L72
---

# MenuItemOptions

## Signature

```ts
interface MenuItemOptions {
  checked?: boolean
  disabled?: boolean
  label?: string
  name: string
  searchValue?: SearchValue
  type?: 'checkbox' | 'radio'
  value?: string
}

```