All files / src/icons Paperclip.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 Paperclip = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Paperclip(props, ref) {
  return (
    <Icon {...props} name="Paperclip">
      <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="M11.2517 3.60503L5.78315 13.2677C4.61507 15.3316 5.30753 17.9685 7.33094 19.1602C9.35449 20.3521 11.9395 19.6453 13.1076 17.5813L18.4436 8.15279C19.1455 6.91258 18.7285 5.32461 17.5126 4.60844C16.2965 3.89219 14.7397 4.31788 14.0377 5.55822L8.70173 14.9867C8.46604 15.4031 8.60752 15.9422 9.01599 16.1828C9.42458 16.4235 9.9533 16.2788 10.1891 15.8622L15.6574 6.19994L17.5752 7.32954L12.1067 16.9922C11.2585 18.4911 9.37795 19.005 7.90893 18.1397C6.43977 17.2744 5.9357 15.3557 6.78406 13.8567L12.12 4.42827C13.4345 2.10565 16.3431 1.31069 18.6196 2.65151C20.8963 3.99242 21.6758 6.95997 20.3613 9.28273L15.0253 18.7112C13.2446 21.8576 9.30785 22.9336 6.22388 21.1172C3.13978 19.3007 2.08473 15.2842 3.86548 12.1377L9.33378 2.47543L11.2517 3.60503Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Paperclip.displayName = 'Paperclip'
 
export default Paperclip