All files / src/icons PhoneMobile.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 33 34    1x 1x   1x                                                 1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const PhoneMobile = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PhoneMobile(props, ref) {
  return (
    <Icon {...props} name="PhoneMobile">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M6.47727 1C5.79947 1 5.25 1.54721 5.25 2.22222V21.7778C5.25 22.4528 5.79947 23 6.47727 23H17.5227C18.2005 23 18.75 22.4528 18.75 21.7778V2.22222C18.75 1.54721 18.2005 1 17.5227 1H6.47727ZM10.7781 3.0167C10.4392 3.0167 10.1645 3.2903 10.1645 3.62781C10.1645 3.96532 10.4392 4.23892 10.7781 4.23892H13.2327C13.5716 4.23892 13.8463 3.96532 13.8463 3.62781C13.8463 3.2903 13.5716 3.0167 13.2327 3.0167H10.7781ZM13.2273 20.5556C13.2273 21.2306 12.6778 21.7778 12 21.7778C11.3222 21.7778 10.7727 21.2306 10.7727 20.5556C10.7727 19.8805 11.3222 19.3333 12 19.3333C12.6778 19.3333 13.2273 19.8805 13.2273 20.5556ZM17.0625 5.95H6.9375V18.05H17.0625V5.95Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
PhoneMobile.displayName = 'PhoneMobile'
 
export default PhoneMobile