All files / src/icons FileEye.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    1x 1x   1x                                                         1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const FileEye = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function FileEye(props, ref) {
  return (
    <Icon {...props} name="FileEye">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M12 15.4128C13.2887 15.4128 14.3333 14.3682 14.3333 13.0795C14.3333 11.7908 13.2887 10.7462 12 10.7462C10.7113 10.7462 9.66667 11.7908 9.66667 13.0795C9.66667 14.3682 10.7113 15.4128 12 15.4128Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M5 21V3H14L19 7V21H5ZM12 9.5795C9.61364 9.5795 7.57568 11.0308 6.75 13.0795C7.57568 15.1282 9.61364 16.5795 12 16.5795C14.3864 16.5795 16.4243 15.1282 17.25 13.0795C16.4243 11.0308 14.3864 9.5795 12 9.5795Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
FileEye.displayName = 'FileEye'
 
export default FileEye