import { QrCode as ChakraQrCode } from "@chakra-ui/react" import * as React from "react" export interface QrCodeProps extends Omit { fill?: string overlay?: React.ReactNode } export const QrCode = React.forwardRef( function QrCode(props, ref) { const { children, fill, overlay, ...rest } = props return ( {overlay} {children && {children}} ) }, )