UNPKG

@spaced-out/ui-design-system

Version:
19 lines 576 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { IconSize, IconType } from '../Icon'; type ClassNames = Readonly<{ wrapper?: string; }>; export type SubMenuProps = { classNames?: ClassNames; title: string; titleIcon?: string; titleIconSize?: IconSize; titleIconType?: IconType; children?: React.ReactNode; onClose?: () => unknown; showClose?: boolean; }; export declare const SubMenu: Flow.AbstractComponent<SubMenuProps, HTMLDivElement>; export {}; //# sourceMappingURL=SubMenu.d.ts.map