All files / src/icons FullscreenExit.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 35 36 37 38 39 40 41 42 43 44    1x 1x   1x                                                                     1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const FullscreenExit = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function FullscreenExit(props, ref) {
  return (
    <Icon {...props} name="FullscreenExit">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M3.3764 7.8222L5.87343 7.82219L1.41577 3.36453L3.37601 1.4043L7.81191 5.8402L7.81191 3.38669L10.5841 3.38669L10.5841 10.5944L3.3764 10.5944V7.8222Z"
          fill="currentColor"
        />
        <path
          d="M3.3764 16.1768L5.87343 16.1768L1.41577 20.6345L3.37601 22.5947L7.81191 18.1588L7.81191 20.6123L10.5841 20.6123L10.5841 13.4046L3.3764 13.4046V16.1768Z"
          fill="currentColor"
        />
        <path
          d="M20.6234 16.1768L18.1263 16.1768L22.584 20.6345L20.6238 22.5947L16.1878 18.1588L16.1878 20.6123L13.4157 20.6123L13.4157 13.4046L20.6234 13.4046V16.1768Z"
          fill="currentColor"
        />
        <path
          d="M18.1263 7.82219L20.6234 7.8222V10.5944L13.4157 10.5944L13.4157 3.38669L16.1878 3.38669L16.1878 5.8402L20.6238 1.4043L22.584 3.36453L18.1263 7.82219Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
FullscreenExit.displayName = 'FullscreenExit'
 
export default FullscreenExit