feat: add qr code to live session share dialog. (#10588)

* add qr code to live session share dialog

* use uqr

---------

Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
This commit is contained in:
kish dizon
2026-01-02 11:08:27 +01:00
committed by GitHub
co-authored by dwelle
parent e95222ed32
commit 0586fc138c
6 changed files with 94 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import { renderSVG } from "uqr";
export const generateQRCodeSVG = (text: string): string => {
return renderSVG(text);
};