All files / src/icons PersonMinus.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    1x 1x   1x                                                       1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const PersonMinus = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PersonMinus(props, ref) {
  return (
    <Icon {...props} name="PersonMinus">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M14.5 13C11.5 13 8 14.0029 8 16V18H21V16C21 14.0029 17.5 13 14.5 13Z"
          fill="currentColor"
        />
        <path
          d="M17.25 8.75C17.25 10.2688 16.0188 11.5 14.5 11.5C12.9812 11.5 11.75 10.2688 11.75 8.75C11.75 7.23122 12.9812 6 14.5 6C16.0188 6 17.25 7.23122 17.25 8.75Z"
          fill="currentColor"
        />
        <path d="M9 11V9H3V11H9Z" fill="currentColor" />
      </svg>
    </Icon>
  )
})
 
PersonMinus.displayName = 'PersonMinus'
 
export default PersonMinus