6 lines
381 B
TypeScript
6 lines
381 B
TypeScript
import React from 'react';
|
|
import type { QRCodeProps, QRCodeSemanticClassNames, QRCodeSemanticName, QRCodeSemanticStyles, QRProps, QRPropsCanvas, QRPropsSvg } from './interface';
|
|
export type { QRCodeProps, QRCodeSemanticClassNames, QRCodeSemanticName, QRCodeSemanticStyles, QRProps, QRPropsCanvas, QRPropsSvg, };
|
|
declare const QRCode: React.FC<QRCodeProps>;
|
|
export default QRCode;
|