/** * PopupElement Component * * Popup trigger element. * Renders with unified wrapper styling + content. */ import React from 'react'; import type { CSSProperties } from 'react'; import type { CanvasElement } from '../../../types/constructor'; interface PopupElementProps { element: CanvasElement; resolveUrl?: (url: string | undefined) => string; className: string; style: CSSProperties; } const PopupElement: React.FC = ({ element, className, style, }) => { return (
{element.label || 'Popup'}
); }; export default PopupElement;