All files / src/icons Copilot.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 Copilot = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Copilot(props, ref) {
  return (
    <Icon {...props} name="Copilot">
      <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="M21.5999 13.8004C18.9608 13.8004 17.0608 14.585 15.8227 15.8232C14.5846 17.0613 13.7999 18.9613 13.7999 21.6004H10.1999C10.1999 18.9613 9.41525 17.0613 8.17711 15.8232C6.93897 14.585 5.03899 13.8004 2.3999 13.8004V10.2004C5.03899 10.2004 6.93897 9.41574 8.17711 8.1776C9.41525 6.93946 10.1999 5.03948 10.1999 2.40039H13.7999C13.7999 5.03948 14.5846 6.93946 15.8227 8.1776C17.0608 9.41574 18.9608 10.2004 21.5999 10.2004V13.8004ZM9.14042 12.0004C9.71061 11.6318 10.2397 11.2062 10.7227 10.7232C11.2057 10.2401 11.6313 9.7111 11.9999 9.14091C12.3685 9.7111 12.7941 10.2401 13.2771 10.7232C13.7601 11.2062 14.2892 11.6318 14.8594 12.0004C14.2892 12.369 13.7601 12.7946 13.2771 13.2776C12.7941 13.7606 12.3685 14.2897 11.9999 14.8599C11.6313 14.2897 11.2057 13.7606 10.7227 13.2776C10.2397 12.7946 9.71061 12.369 9.14042 12.0004Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Copilot.displayName = 'Copilot'
 
export default Copilot