mirror of
https://github.com/Dvorinka/excalidraw-full.git
synced 2026-06-03 22:02:57 +00:00
20 lines
395 B
TypeScript
20 lines
395 B
TypeScript
import React from "react";
|
|
import { Footer } from "../../packages/excalidraw/index";
|
|
import { EncryptedIcon } from "./EncryptedIcon";
|
|
|
|
export const AppFooter = React.memo(() => {
|
|
return (
|
|
<Footer>
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
gap: ".5rem",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<EncryptedIcon />
|
|
</div>
|
|
</Footer>
|
|
);
|
|
});
|