antd
Version:
An enterprise-class UI design language and React components implementation
9 lines (8 loc) • 366 B
TypeScript
import React from 'react';
import type { QRCodeProps, QRProps, QRPropsCanvas, QRPropsSvg } from './interface';
export type { QRCodeProps, QRProps, QRPropsCanvas, QRPropsSvg };
export interface QRCodeRef {
nativeElement: HTMLDivElement;
}
declare const QRCode: React.ForwardRefExoticComponent<QRCodeProps & React.RefAttributes<QRCodeRef>>;
export default QRCode;