UNPKG

@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

35 lines 1.27 kB
import React from 'react'; import { ButtonProps } from '../../button/interfaces'; import { AppLayoutProps } from '../interfaces'; import { AppLayoutButtonProps } from './interfaces'; export declare const togglesConfig: { readonly navigation: { readonly TagName: "nav"; readonly iconName: "menu"; readonly getLabels: (labels?: AppLayoutProps.Labels) => { mainLabel: string | undefined; openLabel: string | undefined; closeLabel: string | undefined; }; }; readonly tools: { readonly TagName: "aside"; readonly iconName: "status-info"; readonly getLabels: (labels?: AppLayoutProps.Labels) => { mainLabel: string | undefined; openLabel: string | undefined; closeLabel: string | undefined; }; }; }; export declare const ToggleButton: React.ForwardRefExoticComponent<AppLayoutButtonProps & React.RefAttributes<{ focus(): void; }>>; interface CloseButtonProps { className?: string; ariaLabel: string | undefined; onClick: () => void; } export declare const CloseButton: React.ForwardRefExoticComponent<CloseButtonProps & React.RefAttributes<ButtonProps.Ref>>; export {}; //# sourceMappingURL=index.d.ts.map