/** @jsx figma.widget.h */ const { widget } = figma; const { AutoLayout, SVG, Text, useSyncedState, usePropertyMenu } = widget; function Widget() { const handleTextClick = () => { return new Promise(() => { figma.showUI(__html__, { width: 300, height: 260, themeColors: true, }); }); }; return ( Click me ); } export default function () { widget.register(Widget); }