@spaced-out/ui-design-system
Version:
Sense UI components library
20 lines • 613 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { IconSize, IconType } from '../../components/Icon';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export interface SubMenuProps {
classNames?: ClassNames;
title: string;
titleIcon?: string;
titleIconSize?: IconSize;
titleIconType?: IconType;
children?: React.ReactNode;
onClose?: () => unknown;
showClose?: boolean;
testId?: string;
}
export declare const SubMenu: Flow.AbstractComponent<SubMenuProps, HTMLDivElement>;
export {};
//# sourceMappingURL=SubMenu.d.ts.map