wakuconnect-chat-sdk/packages/icons/src/communities-icon.tsx

26 lines
1.0 KiB
TypeScript
Raw Normal View History

import { createIcon } from '../lib/create-icon'
const SvgCommunitiesIcon = createIcon(props => {
return (
<svg
{...props}
xmlns="http://www.w3.org/2000/svg"
width={props.width}
height={props.height}
fill="none"
viewBox="0 0 20 20"
focusable={false}
aria-hidden={true}
>
<path
fill={props.color}
fillRule="evenodd"
d="M17.6 4c0-.872-.717-1.628-1.642-1.564A14.574 14.574 0 0 0 2.436 15.958C2.371 16.883 3.128 17.6 4 17.6h7c.906 0 1.536-.726 1.688-1.474a4.4 4.4 0 0 1 3.438-3.438c.748-.152 1.474-.782 1.474-1.688V4Zm-1.558-.367c.176-.012.358.135.358.367v1.416A11.6 11.6 0 0 0 5.415 16.4H4c-.232 0-.379-.181-.367-.358A13.374 13.374 0 0 1 16.042 3.633ZM6.617 16.4h1.804A8.6 8.6 0 0 1 16.4 8.421V6.617A10.4 10.4 0 0 0 6.617 16.4ZM16.4 9.624A7.4 7.4 0 0 0 9.624 16.4H11c.198 0 .444-.178.511-.513a5.6 5.6 0 0 1 4.376-4.375c.335-.068.513-.314.513-.512V9.624Z"
clipRule="evenodd"
/>
</svg>
)
})
export default SvgCommunitiesIcon