All files / src/icons ScrollBlueprint.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 ScrollBlueprint = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ScrollBlueprint(props, ref) {
  return (
    <Icon {...props} name="ScrollBlueprint">
      <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="M21.1667 22.5C22.6334 22.5 23 21.1989 23 20.5205L23 5.78894C23 4.29023 21.8723 3 20.5223 3L5.00003 3C3.7167 2.96366 3.19999 2.65 3.2 1H1V16.2889C1 17.7877 2.09441 19.0026 3.44444 19.0026L19.9444 19.0026C20.282 19.0026 20.6016 19.3714 20.6016 19.7461C20.6016 20.1208 20.3375 20.5 20 20.5L18 20.5V22.5H21.1667ZM6 17V5H15.75V9.66667H19V17H6ZM11.525 6.66667V8H9.9V6.66667H7.625V9.66667H11.525V11.3333H7.625V15.3333H9.9V13H11.525V15.3333H17.375V11.3333H14.125V6.66667H11.525Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
ScrollBlueprint.displayName = 'ScrollBlueprint'
 
export default ScrollBlueprint