/**
* Displays a QR code card, with your choice of URL and specified width.
* @author Benedikt Arnarsson
* @author Gabe Abrams
*/importReactfrom'react';
typeProps = {
url: string;
subText?: string;
};
declareconstQrCard: React.FC<Props>;
exportdefaultQrCard;