pix-react
Version:
QRCode para pagamento PIX / QRCode for Brazilian PIX payment
8 lines (7 loc) • 339 B
TypeScript
import React, { ReactElement } from 'react';
import { PixParams } from './pixPayload';
import QRCodeSVG from 'qrcode.react';
export declare type PixQRCodeProps = Omit<React.ComponentProps<typeof QRCodeSVG>, 'value'> & {
pixParams: PixParams;
};
export declare function PixQRCode({ pixParams, ...props }: PixQRCodeProps): ReactElement;