All files / src/icons LocationSearching.tsx

83.33% Statements 5/6
100% Branches 0/0
0% Functions 0/1
83.33% Lines 5/6

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 26 27 28 29 30 31 32    1x 1x   1x                                             1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const LocationSearching = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function LocationSearching(props, ref) {
  return (
    <Icon {...props} name="LocationSearching">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M11 22.9996V20.9996C8.91672 20.7663 7.12922 19.9038 5.63755 18.4121C4.14588 16.9204 3.28338 15.1329 3.05005 13.0496H1.05005V11.0496H3.05005C3.28338 8.96628 4.14588 7.17878 5.63755 5.68711C7.12922 4.19544 8.91672 3.33294 11 3.09961V1.09961H13V3.09961C15.0834 3.33294 16.8709 4.19544 18.3625 5.68711C19.8542 7.17878 20.7167 8.96628 20.95 11.0496H22.95V13.0496H20.95C20.7167 15.1329 19.8542 16.9204 18.3625 18.4121C16.8709 19.9038 15.0834 20.7663 13 20.9996V22.9996H11ZM12 19.0496C13.9334 19.0496 15.5834 18.3663 16.95 16.9996C18.3167 15.6329 19 13.9829 19 12.0496C19 10.1163 18.3167 8.46628 16.95 7.09961C15.5834 5.73294 13.9334 5.04961 12 5.04961C10.0667 5.04961 8.41672 5.73294 7.05005 7.09961C5.68338 8.46628 5.00005 10.1163 5.00005 12.0496C5.00005 13.9829 5.68338 15.6329 7.05005 16.9996C8.41672 18.3663 10.0667 19.0496 12 19.0496Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
LocationSearching.displayName = 'LocationSearching'
 
export default LocationSearching