All files / src/icons Wifi.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 Wifi = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Wifi(props, ref) {
  return (
    <Icon {...props} name="Wifi">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M3 9.51262L4.63636 11.0558C8.70273 7.22103 15.2973 7.22103 19.3636 11.0558L21 9.51262C16.0336 4.82913 7.97455 4.82913 3 9.51262ZM9.54545 15.6853L12 18L14.4545 15.6853C13.1045 14.4044 10.9036 14.4044 9.54545 15.6853ZM6.27273 12.5989L7.90909 14.1421C10.1673 12.0125 13.8327 12.0125 16.0909 14.1421L17.7273 12.5989C14.5691 9.62064 9.43909 9.62064 6.27273 12.5989Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Wifi.displayName = 'Wifi'
 
export default Wifi