UNPKG

791 BTypeScriptView Raw
1import * as React from 'react';
2export interface OptionsMenuItemGroupProps extends React.HTMLProps<HTMLElement> {
3 /** Content to be rendered in the options menu items component */
4 children?: React.ReactNode;
5 /** Classes applied to root element of the options menu items group */
6 className?: string;
7 /** Provides an accessible name for the options menu items group */
8 'aria-label'?: string;
9 /** Optional title for the options menu items group */
10 groupTitle?: string | React.ReactNode;
11 /** Flag indicating this options menu items group will be followed by a horizontal separator */
12 hasSeparator?: boolean;
13}
14export declare const OptionsMenuItemGroup: React.FunctionComponent<OptionsMenuItemGroupProps>;
15//# sourceMappingURL=OptionsMenuItemGroup.d.ts.map
\No newline at end of file