All files / src/icons ThumbUp.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    1x 1x   1x                                               1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const ThumbUp = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function ThumbUp(props, ref) {
  return (
    <Icon {...props} name="ThumbUp">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M22 9.97468C22 8.97215 21.2 8.15189 20.2222 8.15189H16.88C17.4044 6.59341 18 4.98025 18 4.05063C18 3.28506 17.2978 2 16 2C14.6933 2 14 3.28506 14 4.05063C14 6.75057 10.6394 7.81381 8.5 8.66456V18.9177C8.5 18.9177 10 19.943 13 19.943L17.5556 20C18.5333 20 19.3333 19.1797 19.3333 18.1772C19.3333 17.8035 19.2178 17.4481 19.0311 17.1656C19.7244 16.9104 20.2222 16.2359 20.2222 15.443C20.2222 15.0694 20.1067 14.7139 19.92 14.4314C20.6133 14.1762 21.1111 13.5018 21.1111 12.7089C21.1111 12.3352 20.9956 11.9797 20.8089 11.6972C21.5022 11.442 22 10.7676 22 9.97468Z"
          fill="currentColor"
        />
        <path d="M7 20V8H2V20H7Z" fill="currentColor" />
      </svg>
    </Icon>
  )
})
 
ThumbUp.displayName = 'ThumbUp'
 
export default ThumbUp