All files / src/icons Qualifications.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    1x 1x   1x                                                         1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const Qualifications = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function Qualifications(props, ref) {
  return (
    <Icon {...props} name="Qualifications">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M8.25 14.25V22L12 20.1369L15.75 21.9999V14.25C14.6774 14.9668 13.3876 15.39 12 15.39C10.6124 15.39 9.32257 14.9668 8.25 14.25Z"
          fill="currentColor"
        />
        <path
          fillRule="evenodd"
          clipRule="evenodd"
          d="M12 13.9803C15.3137 13.9803 18 11.2984 18 7.99015C18 4.68188 15.3137 2 12 2C8.68629 2 6 4.68188 6 7.99015C6 11.2984 8.68629 13.9803 12 13.9803ZM11.4095 10.9852L9 8.61611L9.97024 7.66173L11.2978 8.96662L13.9298 5.74384L15 6.58903L11.4095 10.9852Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
Qualifications.displayName = 'Qualifications'
 
export default Qualifications