All files / src/icons Insights.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    1x 1x   1x                                                             1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Insights = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Insights(props, ref) {
  return (
    <Icon {...props} name="Insights">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M20.1818 11C18.8636 11 18.1273 12.3091 18.4273 13.2818L15.2 16.5182C14.9273 16.4364 14.5273 16.4364 14.2545 16.5182L11.9364 14.2C12.2455 13.2273 11.5091 11.9091 10.1818 11.9091C8.86364 11.9091 8.11818 13.2182 8.42727 14.2L4.28182 18.3364C3.30909 18.0364 2 18.7727 2 20.0909C2 21.0909 2.81818 21.9091 3.81818 21.9091C5.13636 21.9091 5.87273 20.6 5.57273 19.6273L9.70909 15.4818C9.98182 15.5636 10.3818 15.5636 10.6545 15.4818L12.9727 17.8C12.6636 18.7727 13.4 20.0909 14.7273 20.0909C16.0455 20.0909 16.7909 18.7818 16.4818 17.8L19.7182 14.5727C20.6909 14.8727 22 14.1364 22 12.8182C22 11.8182 21.1818 11 20.1818 11Z"
          fill="currentColor"
        />
        <path
          d="M14.5 11L15.91 7.895L19 6.5L15.91 5.105L14.5 2L13.12 5.105L10 6.5L13.12 7.895L14.5 11Z"
          fill="currentColor"
        />
        <path
          d="M5.5 13L6.59667 10.585L9 9.5L6.59667 8.415L5.5 6L4.42667 8.415L2 9.5L4.42667 10.585L5.5 13Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Insights.displayName = 'Insights'
 
export default Insights