0586fc138c
* add qr code to live session share dialog * use uqr --------- Co-authored-by: dwelle <5153846+dwelle@users.noreply.github.com>
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import { renderSVG } from "uqr";
|
|
|
|
export const generateQRCodeSVG = (text: string): string => {
|
|
return renderSVG(text);
|
|
};
|