All files / src/icons ArrowDashDown.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 ArrowDashDown = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ArrowDashDown(props, ref) {
  return (
    <Icon {...props} name="ArrowDashDown">
      <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="M13.3795 2L13.3794 4.8072L10.8246 4.8072V2L13.3795 2ZM13.3766 6.84853L13.3857 10.9312H10.8342L10.8251 6.84853L13.3766 6.84853ZM12.1092 22L5 15.2993L5 15.0784L6.69748 13.45L10.8301 17.3055L10.8301 12.9725H13.385L13.385 17.2974L17.4291 13.4482L19.242 15.1887L12.1092 22Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
ArrowDashDown.displayName = 'ArrowDashDown'
 
export default ArrowDashDown