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