---
title: MenuItemOptions
---

# MenuItemOptions

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/ui/src/components/menu/menu.tsx#L261" target="_blank">View Source</a>

## Signature

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

```