/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT-0 */ import { ReactNode, FunctionComponent } from 'react' import { Box, Popover } from 'aws-northstar' import Icon from 'aws-northstar/components/Icon' import { FormattedMessage } from 'react-intl' export interface InfoPopoverProps { infoPopoverVariant?: 'hover' | 'click' infoKey?: string | number infoHeader?: string infoValues?: Record infoIconFontSize?: 'small' | 'inherit' | 'default' | 'large' } export const InfoPopover: FunctionComponent = ({ infoPopoverVariant = 'hover', infoKey, infoHeader = 'Info', infoValues, infoIconFontSize = 'small', }) => { const infoValuesWithTags = { ...infoValues, b: (content: string) => {content}, strong: (content: string) => {content}, p: (content: string) =>

{content}

, i: (content: string) => {content}, } return ( } > ) }