All files / src/icons FileQuestionMark.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 FileQuestionMark = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function FileQuestionMark(props, ref) {
  return (
    <Icon {...props} name="FileQuestionMark">
      <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="M5 21V3H14L19 7V21H5ZM11.0175 10.3053C10.8538 10.5725 10.7944 10.9455 10.7944 11.2498H9C9 10.7734 9.08074 9.98982 9.50586 9.29575C9.9718 8.53505 10.7813 8 11.972 8C13.0392 8 13.853 8.32178 14.3818 8.94508C14.8921 9.54654 15 10.2702 15 10.7813C15 12.2211 14.0397 13.095 13.2282 13.5003C13.0483 13.5901 12.9207 13.7304 12.8411 13.8442V14.4975H11.0467V13.7843C11.0467 13.5426 11.0912 13.2298 11.2687 12.9304C11.4413 12.639 11.811 12.131 12.454 11.8099C12.9323 11.571 13.2056 11.2154 13.2056 10.7813C13.2056 10.5117 13.1453 10.3132 13.0387 10.1876C12.9507 10.0838 12.6991 9.87374 11.972 9.87374C11.3682 9.87374 11.1404 10.1048 11.0175 10.3053ZM11.9693 18C12.6166 18 13.1414 17.4754 13.1414 16.8284C13.1414 16.1813 12.6166 15.6567 11.9693 15.6567C11.322 15.6567 10.7972 16.1813 10.7972 16.8284C10.7972 17.4754 11.322 18 11.9693 18Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
FileQuestionMark.displayName = 'FileQuestionMark'
 
export default FileQuestionMark