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