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