Back

50% Statements 1/2
0% Branches 0/4
0% Functions 0/1
50% Lines 1/2

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25      1x                                          
import { __ } from '@wordpress/i18n';
import { SVG, Path, SVGProps } from '@wordpress/primitives';
 
const HostingerReachIcon = ( props: SVGProps & { width?: number; height?: number } ) => (
	<SVG
		{ ...props }
		width={ props.width || 30 }
		height={ props.height || 30 }
		viewBox="7.002 8.287 148.203 175.426"
		fill="none"
		xmlns="http://www.w3.org/2000/svg"
		role="img"
		aria-label={ __( 'Hostinger Reach icon', 'jetpack-forms' ) }
	>
		<Path
			d="m7.002 8.287 39.319 21.172v39.32h57.467l36.295 21.172h-133.081zm148.203 75.615v-54.443l-42.344-21.172v51.418zm0 99.811-39.319-21.172v-39.32h-57.467l-36.295-21.172h133.081zm-148.203-75.615v54.443l42.343 21.172v-51.418z"
			fill="#6747c7"
			fillRule="evenodd"
			clipRule="evenodd"
		/>
	</SVG>
);
 
export default HostingerReachIcon;