All files / src/icons Ban.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 Ban = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Ban(props, ref) {
  return (
    <Icon {...props} name="Ban">
      <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="M19.0711 19.0711C15.1658 22.9763 8.83417 22.9763 4.92893 19.0711C1.02369 15.1658 1.02369 8.83417 4.92893 4.92893C8.83418 1.02369 15.1658 1.02369 19.0711 4.92893C22.9763 8.83417 22.9763 15.1658 19.0711 19.0711ZM6.25596 15.387L15.387 6.25597C12.8305 4.74607 9.48251 5.0894 7.28595 7.28595C5.08939 9.48251 4.74606 12.8305 6.25596 15.387ZM8.61299 17.7441C11.1695 19.2539 14.5175 18.9106 16.714 16.714C18.9106 14.5175 19.2539 11.1695 17.7441 8.61299L8.61299 17.7441Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Ban.displayName = 'Ban'
 
export default Ban