All files / src/icons Highlighter.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 39 40 41 42 43 44    1x 1x   1x                                                                     1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Highlighter = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Highlighter(props, ref) {
  return (
    <Icon {...props} name="Highlighter">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M12.6196 17.3939L20.4911 6.1856L18.435 4L7.28881 11.7273L12.6196 17.3939Z"
          fill="currentColor"
        />
        <path
          d="M11.9788 18.2948L6.49596 12.4665L6.15328 15.7449L5.35034 17.3939L7.28881 19.4545L8.8947 18.6591L11.9788 18.2948Z"
          fill="currentColor"
        />
        <path
          d="M6.72105 19.8813L5.35034 21H2.92725L4.87879 18L6.72105 19.8813Z"
          fill="currentColor"
        />
        <path
          d="M14.1486 19L8.78186 21H20.4911V19H14.1486Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Highlighter.displayName = 'Highlighter'
 
export default Highlighter