import * as React from 'react'; export interface BarcodeQr64Props extends React.SVGProps { ariaLabel?: string } export default function BarcodeQr64({ ariaLabel, ...props }: BarcodeQr64Props) { return ( ); }