All files / src/icons CircleNodes.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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60    1x 1x   1x                                                                                                     1x   1x  
// THIS IS A GENERATED FILE, DO NOT EDIT
 
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
 
const CircleNodes = React.forwardRef<
  SVGSVGElement,
  { size?: IconSize } & React.SVGAttributes<SVGElement>
>(function CircleNodes(props, ref) {
  return (
    <Icon {...props} name="CircleNodes">
      <svg
        width="24"
        height="24"
        viewBox="0 0 24 24"
        fill="currentColor"
        xmlns="http://www.w3.org/2000/svg"
        ref={ref}
      >
        <path
          d="M21.4963 8.85751C20.989 9.31053 20.3784 9.6503 19.7042 9.83707C19.8969 10.525 20 11.2505 20 12C20 12.7495 19.8969 13.475 19.7042 14.1629C20.3784 14.3497 20.989 14.6895 21.4963 15.1425C21.8231 14.1543 22 13.0978 22 12C22 10.9022 21.8231 9.84572 21.4963 8.85751Z"
          fill="currentColor"
        />
        <path
          d="M15.1425 21.4963C14.6895 20.989 14.3497 20.3784 14.1629 19.7042C13.475 19.8969 12.7495 20 12 20C11.2505 20 10.525 19.8969 9.83707 19.7042C9.65029 20.3784 9.31053 20.989 8.8575 21.4963C9.84572 21.8231 10.9022 22 12 22C13.0978 22 14.1543 21.8231 15.1425 21.4963Z"
          fill="currentColor"
        />
        <path
          d="M4 12C4 12.7495 4.10307 13.475 4.29582 14.1629C3.62163 14.3497 3.01103 14.6895 2.50374 15.1425C2.1769 14.1543 2 13.0978 2 12C2 10.9022 2.1769 9.84572 2.50374 8.8575C3.01103 9.31053 3.62163 9.65029 4.29582 9.83707C4.10308 10.525 4 11.2505 4 12Z"
          fill="currentColor"
        />
        <path
          d="M15.1425 2.50374C14.1543 2.1769 13.0978 2 12 2C10.9022 2 9.84572 2.1769 8.8575 2.50374C9.31053 3.01103 9.65029 3.62163 9.83707 4.29582C10.525 4.10308 11.2505 4 12 4C12.7495 4 13.475 4.10308 14.1629 4.29582C14.3497 3.62163 14.6895 3.01103 15.1425 2.50374Z"
          fill="currentColor"
        />
        <path
          d="M8.5 5.5C8.5 7.15685 7.15685 8.5 5.5 8.5C3.84315 8.5 2.5 7.15685 2.5 5.5C2.5 3.84315 3.84315 2.5 5.5 2.5C7.15685 2.5 8.5 3.84315 8.5 5.5Z"
          fill="currentColor"
        />
        <path
          d="M8.5 18.5C8.5 20.1569 7.15685 21.5 5.5 21.5C3.84315 21.5 2.5 20.1569 2.5 18.5C2.5 16.8431 3.84315 15.5 5.5 15.5C7.15685 15.5 8.5 16.8431 8.5 18.5Z"
          fill="currentColor"
        />
        <path
          d="M21.5 5.5C21.5 7.15685 20.1569 8.5 18.5 8.5C16.8431 8.5 15.5 7.15685 15.5 5.5C15.5 3.84315 16.8431 2.5 18.5 2.5C20.1569 2.5 21.5 3.84315 21.5 5.5Z"
          fill="currentColor"
        />
        <path
          d="M21.5 18.5C21.5 20.1569 20.1569 21.5 18.5 21.5C16.8431 21.5 15.5 20.1569 15.5 18.5C15.5 16.8431 16.8431 15.5 18.5 15.5C20.1569 15.5 21.5 16.8431 21.5 18.5Z"
          fill="currentColor"
        />
      </svg>
    </Icon>
  )
})
 
CircleNodes.displayName = 'CircleNodes'
 
export default CircleNodes