eddyter 1.3.70 → 1.3.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +247 -262
- package/dist/EddyterIcon.svg +24 -0
- package/dist/ImageResizer-FrE13F54.js +237 -0
- package/dist/assets/style.css +1 -1
- package/dist/components/EddyterLogo/EddyterLogo.d.ts +13 -0
- package/dist/{html2pdf.bundle-ZbgrRtz0.js → html2pdf.bundle-Bptnpoce.js} +1 -1
- package/dist/{html2pdf.bundle.min-D6BlTaug.js → html2pdf.bundle.min-CL0HFz_I.js} +1 -1
- package/dist/{index-DJEsPHep.js → index-BgjRNNca.js} +6719 -6616
- package/dist/{index-7sHS7FZi.js → index-CTVNcCfu.js} +2 -2
- package/dist/{index-BJBbBVqE.js → index-Y3Jbqb5R.js} +351 -331
- package/dist/{index-aG2ca7vV.js → index-aoU-Zn1p.js} +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/ImageResizer-CbtUYHip.js +0 -199
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface EddyterLogoProps {
|
|
3
|
+
/** Size in pixels for width and height */
|
|
4
|
+
size?: number;
|
|
5
|
+
/** Additional CSS class names */
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Eddyter brand logo from apps/editor/public/EddyterIcon.svg.
|
|
10
|
+
* Uses invert dark:invert-0 (same as frontend) — dark in light mode, white in dark mode.
|
|
11
|
+
*/
|
|
12
|
+
declare const EddyterLogo: React.FC<EddyterLogoProps>;
|
|
13
|
+
export default EddyterLogo;
|