From 225db4a7805befe009fe055fc2ef5daedd6c04f9 Mon Sep 17 00:00:00 2001
From: kj_sh604
Date: Sun, 15 Mar 2026 16:19:35 -0400
Subject: refactor: examples/
---
.../components/CustomFooter.tsx | 73 ++++++++++++++++++++++
1 file changed, 73 insertions(+)
create mode 100644 examples/with-script-in-browser/components/CustomFooter.tsx
(limited to 'examples/with-script-in-browser/components/CustomFooter.tsx')
diff --git a/examples/with-script-in-browser/components/CustomFooter.tsx b/examples/with-script-in-browser/components/CustomFooter.tsx
new file mode 100644
index 0000000..72fd199
--- /dev/null
+++ b/examples/with-script-in-browser/components/CustomFooter.tsx
@@ -0,0 +1,73 @@
+import React from "react";
+import type * as TExcalidraw from "@excalidraw/excalidraw";
+import type { ExcalidrawImperativeAPI } from "@excalidraw/excalidraw/types";
+
+const COMMENT_SVG = (
+
+);
+
+const CustomFooter = ({
+ excalidrawAPI,
+ excalidrawLib,
+}: {
+ excalidrawAPI: ExcalidrawImperativeAPI;
+ excalidrawLib: typeof TExcalidraw;
+}) => {
+ const { Button, MIME_TYPES } = excalidrawLib;
+
+ return (
+ <>
+
+
+ >
+ );
+};
+
+export default CustomFooter;
--
cgit v1.2.3