You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
430 B
12 lines
430 B
import * as React from 'react';
|
|
export interface MenuItemGroupProps {
|
|
className?: string;
|
|
title?: React.ReactNode;
|
|
children?: React.ReactNode;
|
|
/** @private Internal filled key. Do not set it directly */
|
|
eventKey?: string;
|
|
/** @private Do not use. Private warning empty usage */
|
|
warnKey?: boolean;
|
|
}
|
|
export default function MenuItemGroup({ children, ...props }: MenuItemGroupProps): React.ReactElement;
|