UNPKG

@base-ui-components/react

Version:

Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.

55 lines 1.59 kB
import * as React from 'react'; import type { BaseUIComponentProps, NonNativeButtonProps } from "../../utils/types.js"; /** * A menu item that works like a radio button in a given group. * Renders a `<div>` element. * * Documentation: [Base UI Menu](https://base-ui.com/react/components/menu) */ export declare const MenuRadioItem: React.ForwardRefExoticComponent<MenuRadioItem.Props & React.RefAttributes<Element>>; export declare namespace MenuRadioItem { type State = { /** * Whether the radio item should ignore user interaction. */ disabled: boolean; /** * Whether the radio item is currently highlighted. */ highlighted: boolean; /** * Whether the radio item is currently selected. */ checked: boolean; }; interface Props extends NonNativeButtonProps, BaseUIComponentProps<'div', State> { /** * Value of the radio item. * This is the value that will be set in the MenuRadioGroup when the item is selected. */ value: any; children?: React.ReactNode; /** * The click handler for the menu item. */ onClick?: React.MouseEventHandler<HTMLElement>; /** * Whether the component should ignore user interaction. * @default false */ disabled?: boolean; /** * Overrides the text label to use when the item is matched during keyboard text navigation. */ label?: string; /** * @ignore */ id?: string; /** * Whether to close the menu when the item is clicked. * @default false */ closeOnClick?: boolean; } }