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

25 lines 643 B
import React from 'react'; export interface PopoverBodyProps { dismissButton: boolean; dismissAriaLabel: string | undefined; onDismiss: (() => void) | undefined; header: React.ReactNode | undefined; children: React.ReactNode; variant?: 'annotation' | 'chart'; 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;