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 | 1x 1x 1x 1x 1x | // THIS IS A GENERATED FILE, DO NOT EDIT
import * as React from 'react'
import { Icon, IconSize } from '../Icon'
const PeopleGroup = React.forwardRef<
SVGSVGElement,
{ size?: IconSize } & React.SVGAttributes<SVGElement>
>(function PeopleGroup(props, ref) {
return (
<Icon {...props} name="PeopleGroup">
<svg
width="24"
height="24"
viewBox="0 0 24 24"
fill="currentColor"
xmlns="http://www.w3.org/2000/svg"
ref={ref}
>
<path
d="M12 4C10.1775 4 8.7 5.53502 8.7 7.42857C8.7 9.32212 10.1775 10.8571 12 10.8571C13.8225 10.8571 15.3 9.32212 15.3 7.42857C15.3 5.53502 13.8225 4 12 4Z"
fill="currentColor"
/>
<path
d="M5 12.0714C6.21 12.0714 7.2 11.0429 7.2 9.78571C7.2 8.52857 6.21 7.5 5 7.5C3.79 7.5 2.8 8.52857 2.8 9.78571C2.8 11.0429 3.79 12.0714 5 12.0714Z"
fill="currentColor"
/>
<path
d="M6.643 13.2571C6.236 13.1886 5.829 13.1429 5.4 13.1429C4.311 13.1429 3.277 13.3829 2.342 13.8057C1.528 14.1714 1 14.9943 1 15.92V18H5.95V15.8743C5.95 14.9257 6.203 14.0343 6.643 13.2571Z"
fill="currentColor"
/>
<path
d="M19 12C20.21 12 21.2 10.9714 21.2 9.71429C21.2 8.45714 20.21 7.42857 19 7.42857C17.79 7.42857 16.8 8.45714 16.8 9.71429C16.8 10.9714 17.79 12 19 12Z"
fill="currentColor"
/>
<path
d="M23 15.92C23 14.9943 22.472 14.1714 21.658 13.8057C20.723 13.3829 19.689 13.1429 18.6 13.1429C18.171 13.1429 17.764 13.1886 17.357 13.2571C17.797 14.0343 18.05 14.9257 18.05 15.8743V18H23V15.92Z"
fill="currentColor"
/>
<path
d="M15.1093 12.9796C14.2513 12.4245 13.1953 12 12 12C10.8047 12 9.74867 12.4245 8.89067 12.9905C8.09867 13.502 7.6 14.6776 7.6 15.9619V18H16.4V15.951C16.4 14.6776 15.9013 13.502 15.1093 12.9796Z"
fill="currentColor"
/>
</svg>
</Icon>
)
})
PeopleGroup.displayName = 'PeopleGroup'
export default PeopleGroup
|