All files / src/icons Retrieve.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    1x 1x   1x                                                                 1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Retrieve = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Retrieve(props, ref) {
  return (
    <Icon {...props} name="Retrieve">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M14 2L21.9497 9.94975L20.5355 11.364L12.5858 3.41421L14 2Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M10.7692 22L10 12H20L19.2308 22H10.7692ZM12.5 14H14V20H12.5V14ZM17.5 14H16V20H17.5V14Z"
          fill="currentColor"
        />
        <path
          d="M3.42478 6.59635L7.02112 3L8.43534 4.41421L5.84955 7H14.0003V9H5.82843L8.43503 11.6066L7.02082 13.0208L3.42478 9.42478L3.41452 9.43503L2.00031 8.02082L2.01056 8.01056L2 8L3.41421 6.58579L3.42478 6.59635Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Retrieve.displayName = 'Retrieve'
 
export default Retrieve