import { Popover, Button } from 'antd'
import { QRCodeCanvas } from 'qrcode.react'
import IonIcon from '@sentre/antd-ionicon'
export type QRProps = { address: string }
const QR = ({ address }: QRProps) => {
return (
}
trigger="click"
arrowPointAtCenter
>
}
onClick={(e) => e.stopPropagation()}
/>
)
}
export default QR