All files / src/icons FolderQuestionMark.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 FolderQuestionMark = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function FolderQuestionMark(props, ref) {
  return (
    <Icon {...props} name="FolderQuestionMark">
      <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="M3.40405 4H9.15405L11.4041 6H21.4041L21.4041 20H3.40405V4ZM11.2989 11.9248C11.2989 11.6509 11.3534 11.3153 11.5034 11.0748C11.616 10.8943 11.8249 10.6864 12.3784 10.6864C13.0449 10.6864 13.2755 10.8754 13.3562 10.9688C13.4539 11.0819 13.5092 11.2606 13.5092 11.5032C13.5092 11.8938 13.2587 12.2139 12.8202 12.4289C12.2308 12.7179 11.8919 13.1751 11.7337 13.4373C11.571 13.7068 11.5302 13.9883 11.5302 14.2058V14.8477H13.1751V14.2598C13.248 14.1574 13.365 14.0311 13.5299 13.9502C14.2737 13.5855 15.1541 12.799 15.1541 11.5032C15.1541 11.0432 15.0552 10.3919 14.5874 9.85057C14.1027 9.2896 13.3567 9 12.3784 9C11.2869 9 10.5449 9.48155 10.1178 10.1662C9.72806 10.7908 9.65405 11.496 9.65405 11.9248H11.2989ZM13.4503 16.9455C13.4503 17.5279 12.9693 18 12.3759 18C11.7825 18 11.3015 17.5279 11.3015 16.9455C11.3015 16.3631 11.7825 15.891 12.3759 15.891C12.9693 15.891 13.4503 16.3631 13.4503 16.9455Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
FolderQuestionMark.displayName = 'FolderQuestionMark'
 
export default FolderQuestionMark