All files / src/icons People.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 People = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function People(props, ref) {
  return (
    <Icon {...props} name="People">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M8.5 13.0114C5.5 13.0114 2 14.0143 2 16.0114L2 19H15V16.0114C15 14.0143 11.5 13.0114 8.5 13.0114ZM16 13.0114C15.7364 13.0114 14.3182 12.9857 14 13.0114C15.0545 13.7314 16.5 14.5114 16.5 16.0114V19H22V16.0114C22 14.0143 19.5 13.0114 16 13.0114Z"
          fill="currentColor"
        />
        <path
          d="M11.5 8.25C11.5 10.0449 10.0449 11.5 8.25 11.5C6.45507 11.5 5 10.0449 5 8.25C5 6.45507 6.45507 5 8.25 5C10.0449 5 11.5 6.45507 11.5 8.25Z"
          fill="currentColor"
        />
        <path
          d="M19.5 8.25C19.5 10.0449 18.0449 11.5 16.25 11.5C14.4551 11.5 13 10.0449 13 8.25C13 6.45507 14.4551 5 16.25 5C18.0449 5 19.5 6.45507 19.5 8.25Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
People.displayName = 'People'
 
export default People