All files / src/icons Toolbox.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    1x 1x   1x                                                         1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Toolbox = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Toolbox(props, ref) {
  return (
    <Icon {...props} name="Toolbox">
      <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="M6.99974 4.99967C6.99992 4.44751 7.44758 4 7.99974 4H16.0007C16.5531 4 17.0008 4.44792 17.0007 5.00033L16.9997 8H21.0001C21.5524 8 22.0001 8.44773 22.0001 9.00002L22.0001 11H1.99906L1.9991 8.99998C1.99911 8.44771 2.44682 8 2.9991 8H6.99874L6.99974 4.99967ZM15.0001 6H9.00007V8H15.0001V6Z"
          fill="currentColor"
        />
        <path
          d="M22.0001 20H1.99906L1.99902 12H22L22.0001 20Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Toolbox.displayName = 'Toolbox'
 
export default Toolbox