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