You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

20 lines
506 B

import React from 'react'
const SvgPeers = props => (
<svg width="1em" height="1em" viewBox="0 0 24 19" {...props}>
<g
transform="translate(1 1)"
stroke="currentColor"
fill="none"
fillRule="evenodd"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="M16 18v-2a4 4 0 0 0-4-4H4a4 4 0 0 0-4 4v2" />
<circle cx={8} cy={4} r={4} />
<path d="M22 18v-2a4 4 0 0 0-3-3.87M15 .13a4 4 0 0 1 0 7.75" />
</g>
</svg>
)
export default SvgPeers