(action: "download" | "copy")
| 77 | }; |
| 78 | |
| 79 | const handleSvgAction = (action: "download" | "copy") => { |
| 80 | if (hasProAccess) { |
| 81 | action === "download" ? handleDownload("svg") : handleCopy("svg"); |
| 82 | } else { |
| 83 | showPaywall({ |
| 84 | title: t`SVG Export is a Pro Feature`, |
| 85 | content: t`Upgrade to Flowchart Fun Pro to unlock SVG exports and enjoy more advanced features for your diagrams.`, |
| 86 | toPricingCode: "SVGExport", |
| 87 | }); |
| 88 | } |
| 89 | }; |
| 90 | |
| 91 | return ( |
| 92 | <> |
no test coverage detected