@spaced-out/ui-design-system
Version:
Sense UI components library
14 lines • 544 B
TypeScript
import type { Flow } from 'flow-to-typescript-codemod';
import type { IconSize, IconType } from '../../components/Icon';
export interface SubMenuLinkProps {
menuLinkTitle?: string;
menuLinkIcon: string;
menuLinkIconSize?: IconSize;
menuLinkIconType?: IconType;
menuKey: string;
selectedMenuKey?: string;
disabled?: boolean;
onChange?: (selectedMenuLinkKey: string) => unknown;
}
export declare const SubMenuLink: Flow.AbstractComponent<SubMenuLinkProps, HTMLDivElement>;
//# sourceMappingURL=SubMenuLink.d.ts.map