import * as React from 'react'; import { Button, Chip, ClickAwayListener, CloseButton, Image, Stack, Typography } from '@elementor/ui'; import { __ } from '@wordpress/i18n'; type Props = { imageUrl: string; description: string; learnMoreUrl: string; onInstall?: () => void; onClose: () => void; }; export function AngieGuideCard( { imageUrl, description, learnMoreUrl, onInstall, onClose }: Props ) { return ( { __( 'Meet Angie', 'elementor' ) } { { description } { onInstall && ( ) } ); }