@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
27 lines • 834 B
TypeScript
/// <reference types="react" />
import { InternalButtonDropdownProps } from '../../../button-dropdown/interfaces';
import { IconProps } from '../../../icon/interfaces';
export interface ButtonTriggerProps {
testUtilsClass?: string;
iconName?: IconProps.Name;
iconUrl?: string;
iconAlt?: string;
iconSvg?: React.ReactNode;
ariaLabel?: string;
disabled?: boolean;
children?: React.ReactNode;
onClick?: () => void;
badge?: boolean;
offsetRight?: 'none' | 'l' | 'xxl';
expanded?: boolean;
}
export interface MenuDropdownProps extends InternalButtonDropdownProps {
iconName?: IconProps.Name;
iconUrl?: string;
iconAlt?: string;
iconSvg?: React.ReactNode;
badge?: boolean;
description?: string;
offsetRight?: 'l' | 'xxl';
}
//# sourceMappingURL=interfaces.d.ts.map