12345678910111213141516171819202122232425262728 |
- import React from "react";
- import type { ExcalidrawImperativeAPI } from "@excalidraw/excalidraw/types";
- import CustomFooter from "./CustomFooter";
- import type * as TExcalidraw from "@excalidraw/excalidraw";
- const MobileFooter = ({
- excalidrawAPI,
- excalidrawLib,
- }: {
- excalidrawAPI: ExcalidrawImperativeAPI;
- excalidrawLib: typeof TExcalidraw;
- }) => {
- const { useDevice, Footer } = excalidrawLib;
- const device = useDevice();
- if (device.editor.isMobile) {
- return (
- <Footer>
- <CustomFooter
- excalidrawAPI={excalidrawAPI}
- excalidrawLib={excalidrawLib}
- />
- </Footer>
- );
- }
- return null;
- };
- export default MobileFooter;
|