import React, { FC } from 'react';
import { ADSIcon } from "../../icons.types";

const ProfileCollaborator24: FC<ADSIcon>  = 
    ({fill, size = '1.5rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
  <path fill-rule="evenodd" d="M6.5 7.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0ZM10 2a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11ZM6.5 14.064a1 1 0 0 0-.836-.076l-3 1.07A1 1 0 0 0 2 16v4a1 1 0 0 0 .77.973L3 20l-.23.973h.002l.003.001.01.003.038.009a31.933 31.933 0 0 0 .674.148c.449.096 1.076.223 1.792.35C6.704 21.736 8.527 22 10 22c.5 0 1.04-.03 1.592-.08a1 1 0 0 0 .908.58h9a1 1 0 0 0 1-1v-7a1 1 0 0 0-1-1h-9a1 1 0 0 0-1 1v.34a7.034 7.034 0 0 1-5-.776Zm5 2.811c-.488.082-.99.125-1.5.125a8.966 8.966 0 0 1-4.085-.978L4 16.705v2.492c.425.09.995.204 1.64.319C7.034 19.764 8.712 20 10 20c.46 0 .97-.03 1.5-.08v-3.045Zm2-1.375v5h7v-5h-7Zm3.323 1.073a.25.25 0 0 1 .354 0l2.25 2.25a.25.25 0 0 1-.177.427h-4.5a.25.25 0 0 1-.177-.427l2.25-2.25Z"/>
</svg>
)
export default ProfileCollaborator24