@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
15 lines (14 loc) • 572 B
TypeScript
export interface MenuRadioGroupProps {
/** Controlled selected value */
value?: string | null;
/** Uncontrolled default selected value */
defaultValue?: string | null;
/** Called with the new value when a `Menu.RadioItem` is selected */
onChange?: (value: string) => void;
/** `Menu.RadioItem` components and other elements */
children?: React.ReactNode;
}
export declare function MenuRadioGroup(_props: MenuRadioGroupProps): import("react/jsx-runtime").JSX.Element;
export declare namespace MenuRadioGroup {
var displayName: string;
}