/** * Internal dependencies */ import { Icon } from '../icon'; export const Browser = ( { type, showTooltip = true, }: { readonly type: string; readonly showTooltip?: boolean; } ): JSX.Element => { if ( type.includes( 'Chrome' ) || type.includes( 'Chromium' ) ) { return ( ); } //end if if ( type.includes( 'Android Browser' ) ) { return ( ); } //end if if ( type.includes( 'Edge' ) ) { return ( ); } //end if if ( type.includes( 'Firefox' ) ) { return ( ); } //end if if ( type.includes( 'Opera' ) ) { return ; } //end if if ( type.includes( 'Safari' ) ) { return ( ); } //end if if ( type.startsWith( 'IE' ) ) { return ( ); } //end if return ; };