All files / src/icons Ruler.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 Ruler = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Ruler(props, ref) {
  return (
    <Icon {...props} name="Ruler">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M6 22L2 18L3.6 16.4L5.2 18L6 17.2L4.4 15.6L6 14L6.8 14.8L7.6 14L6.8 13.2L8.4 11.6L10 13.2L10.8 12.4L9.2 10.8L10.8 9.2L11.6 10L12.4 9.2L11.6 8.4L13.2 6.8L14.8 8.4L15.6 7.6L14 6L15.6 4.4L16.4 5.2L17.2 4.4L16.4 3.6L18 2L22 6L6 22Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Ruler.displayName = 'Ruler'
 
export default Ruler