gitextract_2xb0w4ev/ ├── README.md ├── index.html ├── package.json ├── src/ │ ├── assets/ │ │ └── .gitkeep │ ├── constant/ │ │ ├── data.ts │ │ └── text-effects.ts │ ├── features/ │ │ └── design/ │ │ ├── components/ │ │ │ ├── LidoJSEditor.tsx │ │ │ ├── editor-content/ │ │ │ │ ├── EditorContent.tsx │ │ │ │ └── index.ts │ │ │ ├── editor-header/ │ │ │ │ ├── EditorHeader.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── layer-settings/ │ │ │ │ ├── LayerSettings.tsx │ │ │ │ └── index.ts │ │ │ ├── preview/ │ │ │ │ ├── PreviewModal.tsx │ │ │ │ └── index.ts │ │ │ ├── sidebar/ │ │ │ │ ├── DrawContent.tsx │ │ │ │ ├── FrameContent.tsx │ │ │ │ ├── GraphicContent.tsx │ │ │ │ ├── IframeContent.tsx │ │ │ │ ├── ImageContent.tsx │ │ │ │ ├── Photo.tsx │ │ │ │ ├── QrCodeContent.tsx │ │ │ │ ├── ShapeContent.tsx │ │ │ │ ├── Sidebar.tsx │ │ │ │ ├── TableContent.tsx │ │ │ │ ├── TemplateContent.tsx │ │ │ │ ├── TextContent.tsx │ │ │ │ ├── UploadContent.tsx │ │ │ │ ├── VideoContent.tsx │ │ │ │ └── index.ts │ │ │ └── tabs/ │ │ │ ├── TabList.tsx │ │ │ └── index.ts │ │ ├── config/ │ │ │ ├── iframe.tsx │ │ │ ├── line.tsx │ │ │ ├── qrCode.tsx │ │ │ └── shape.tsx │ │ └── pages/ │ │ ├── DesignPage.tsx │ │ └── index.ts │ ├── main.tsx │ ├── pages/ │ │ └── Main.tsx │ ├── shared/ │ │ ├── components/ │ │ │ ├── index.ts │ │ │ └── masonry/ │ │ │ ├── Masonry.tsx │ │ │ └── index.ts │ │ ├── icons/ │ │ │ └── pencil/ │ │ │ ├── Highlighter.tsx │ │ │ ├── Marker.tsx │ │ │ └── Pencil.tsx │ │ └── theme/ │ │ ├── index.ts │ │ ├── palette.ts │ │ └── theme.ts │ ├── styles.css │ └── utils/ │ ├── download.ts │ └── thumbnail.ts ├── tsconfig.json └── vite.config.ts