import { FC } from "react"; import QRCode from 'react-qr-code'; export const QrLabel: FC<{ value: string, bgcolor: string, fgcolor: string, size: number }> = ({ value, bgcolor, fgcolor, size }) => { return (
) }