All files / src/icons Gantt.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 Gantt = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Gantt(props, ref) {
  return (
    <Icon {...props} name="Gantt">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M2 1C1.44772 1 1 1.44772 1 2V5C1 5.55228 1.44771 6 2 6H7V9.5H4C3.44772 9.5 3 9.94771 3 10.5V13.5C3 14.0523 3.44771 14.5 4 14.5H7V18H2C1.44772 18 1 18.4477 1 19V22C1 22.5523 1.44772 23 2 23H16C16.5523 23 17 22.5523 17 22V19C17 18.4477 16.5523 18 16 18H9V14.5H21C21.5523 14.5 22 14.0523 22 13.5V10.5C22 9.94771 21.5523 9.5 21 9.5H9V6H11C11.5523 6 12 5.55228 12 5V2C12 1.44772 11.5523 1 11 1H2Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Gantt.displayName = 'Gantt'
 
export default Gantt