You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
304 B
11 lines
304 B
declare module "@/components/vendor/qrcode-react" {
|
|
import * as React from "react";
|
|
|
|
export interface QRCodeSVGProps extends React.SVGProps<SVGSVGElement> {
|
|
value: string;
|
|
size?: number;
|
|
level?: "L" | "M" | "Q" | "H";
|
|
}
|
|
|
|
export const QRCodeSVG: React.ComponentType<QRCodeSVGProps>;
|
|
}
|
|
|