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    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
          d="M3.2002 1C3.20019 2.64999 3.71669 2.96365 5 3H20.5225C21.8724 3.00013 23 4.29043 23 5.78906V20.5205C23 21.1989 22.6334 22.4998 21.167 22.5H18V20.5H20C20.3375 20.5 20.6016 20.1208 20.6016 19.7461C20.6016 19.3714 20.2818 19.0029 19.9443 19.0029H3.44434C2.09439 19.0029 1.00006 17.7877 1 16.2891V1H3.2002ZM6 17H19V9.66699H15.75V5H6V17ZM9.90039 8H11.5254V6.66699H14.125V11.333H17.375V15.333H11.5254V13H9.90039V15.333H7.625V11.333H11.5254V9.66699H7.625V6.66699H9.90039V8Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
ScrollBlueprint.displayName = 'ScrollBlueprint'
 
export default ScrollBlueprint