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