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