UNPKG

@sk-py/upi-qr

Version:

Generate NPCI-compliant UPI QR codes for Indian digital payments. Supports payee VPA, amount, transaction note, and more.

13 lines (9 loc) 240 B
import React from "react"; export interface UPIQRComponentProps { qr: string; intent: string; alt?: string; size?: string; } declare const UPIQRComponent: React.FC<UPIQRComponentProps>; export default UPIQRComponent;