All files / src/icons ArrowDashLeft.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 ArrowDashLeft = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ArrowDashLeft(props, ref) {
  return (
    <Icon {...props} name="ArrowDashLeft">
      <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="M22.1211 13.2584H19.3139V10.7035H22.1211V13.2584ZM17.2726 13.2555L13.1899 13.2646V10.7131L17.2726 10.704V13.2555ZM2.12109 11.9881L8.82178 4.87891L8.93223 4.87891L9.04269 4.87891L10.6711 6.57638L6.81563 10.709L11.1486 10.709V13.2639L6.82374 13.2639L10.6729 17.308L8.93241 19.1209L2.12109 11.9881Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
ArrowDashLeft.displayName = 'ArrowDashLeft'
 
export default ArrowDashLeft