From 75c8fda05180993b65e0cc82b9224a78e7f9b7fe Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Mon, 4 Mar 2024 11:37:10 +0100 Subject: [PATCH] Update index.tsx --- documentation/src/pages/assets/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/documentation/src/pages/assets/index.tsx b/documentation/src/pages/assets/index.tsx index aaa0c145..940f03df 100644 --- a/documentation/src/pages/assets/index.tsx +++ b/documentation/src/pages/assets/index.tsx @@ -12,6 +12,7 @@ const Assets: React.FC = () => { // more here.. ]; + const handleCopySVGCode = async (svgUrl: string) => { const response = await fetch(svgUrl); const svgCode = await response.text(); @@ -35,7 +36,9 @@ const Assets: React.FC = () => {
{assets.map((asset, index) => (
- {asset.name} +
+ {asset.name} +
Download