@spaced-out/ui-design-system
Version:
Sense UI components library
24 lines • 912 B
TypeScript
import * as React from 'react';
import type { IconSize, IconType } from '../../components/Icon';
import type { StatusSemanticType } from '../../components/StatusIndicator';
type ClassNames = Readonly<{
wrapper?: string;
groupHeader?: string;
menuGroup?: string;
}>;
export interface SubMenuGroupProps {
children?: React.ReactNode;
groupTitle?: string;
groupIcon?: string;
groupIconSize?: IconSize;
groupIconType?: IconType;
collapsible?: boolean;
disabled?: boolean;
onChange?: (value: string) => unknown;
selectedMenuKey?: string;
status?: StatusSemanticType;
classNames?: ClassNames;
}
export declare const SubMenuGroup: ({ children, groupTitle, groupIcon, groupIconSize, groupIconType, collapsible, disabled, onChange, selectedMenuKey, status, classNames, }: SubMenuGroupProps) => React.JSX.Element;
export {};
//# sourceMappingURL=SubMenuGroup.d.ts.map