@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
16 lines • 714 B
TypeScript
/// <reference types="react" />
import { TopNavigationProps } from '../../interfaces';
import { HeaderProps } from './header';
interface OverflowMenuProps {
headerText?: string;
items?: TopNavigationProps['utilities'];
dismissIconAriaLabel?: HeaderProps['dismissIconAriaLabel'];
backIconAriaLabel?: HeaderProps['backIconAriaLabel'];
onClose?: HeaderProps['onClose'];
}
export interface View extends Omit<OverflowMenuProps, 'items'> {
headerSecondaryText?: HeaderProps['secondaryText'];
}
declare const OverflowMenu: ({ headerText, dismissIconAriaLabel, backIconAriaLabel, items, onClose, }: OverflowMenuProps) => JSX.Element;
export default OverflowMenu;
//# sourceMappingURL=index.d.ts.map