@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
15 lines • 669 B
TypeScript
import React from 'react';
export interface PopoverBodyProps {
dismissButton: boolean;
dismissAriaLabel: string | undefined;
onDismiss: (() => void) | undefined;
header: React.ReactNode | undefined;
children: React.ReactNode;
variant?: 'annotation';
overflowVisible?: 'content' | 'both';
className?: string;
ariaLabelledby?: string;
closeAnalyticsAction?: string;
}
export default function PopoverBody({ dismissButton: showDismissButton, dismissAriaLabel, header, children, onDismiss, variant, overflowVisible, className, ariaLabelledby, closeAnalyticsAction, }: PopoverBodyProps): JSX.Element;
//# sourceMappingURL=body.d.ts.map