/**
 * This file is automatically GENERATED.
 * Manual changes might be lost - proceed with caution!
 *
 * @flow strict
 */

import React, { type Element } from 'react';

type Props = {
  +'data-testid'?: string };


export default function Gps(props: Props): Element<'svg'> {
  return (
    <svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 21 21" {...props}>
      <g fill="none" fillRule="evenodd" transform="translate(2 2)">
        <path
        stroke="currentColor"
        strokeLinecap="round"
        strokeLinejoin="round"
        d="M8.5 14.5c3.329 0 6-2.645 6-5.973 0-3.329-2.671-6.027-6-6.027s-6 2.698-6 6.027c0 3.328 2.671 5.973 6 5.973z" />

        <circle cx={8.5} cy={8.5} r={3.5} fill="currentColor" />
        <path
        stroke="currentColor"
        strokeLinecap="round"
        strokeLinejoin="round"
        d="M.5 8.5h2m12 0h2m-8-8v2m0 12v2" />

      </g>
    </svg>);

}