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