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

const ProfilePassion64: FC<ADSIcon>  = 
    ({fill, size = '4rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
  <path fill-rule="evenodd" d="M16.167 20c0-5.799 4.7-10.5 10.5-10.5 5.799 0 10.5 4.701 10.5 10.5s-4.701 10.5-10.5 10.5c-5.8 0-10.5-4.701-10.5-10.5Zm10.5-13.5c-7.456 0-13.5 6.044-13.5 13.5s6.044 13.5 13.5 13.5 13.5-6.044 13.5-13.5-6.044-13.5-13.5-13.5ZM16.75 38.514a1.5 1.5 0 0 0-1.255-.114l-8 2.854a1.5 1.5 0 0 0-.996 1.413v10.666a1.5 1.5 0 0 0 1.156 1.46L8 53.333l-.344 1.46h.002l.007.003.027.006.1.023c.086.02.214.05.378.086a145.773 145.773 0 0 0 6.139 1.232c3.762.67 8.537 1.357 12.358 1.357 3.82 0 8.596-.687 12.357-1.356a146.5 146.5 0 0 0 2.175-.405l2.158 2.158a1.5 1.5 0 0 0 2.121 0L56.32 47.055a7.5 7.5 0 1 0-10.606-10.607l-1.297 1.296-1.296-1.296a7.5 7.5 0 0 0-12.746 4.373c-1.2.227-2.44.346-3.708.346-3.615 0-7-.966-9.916-2.653Zm13.858 5.313c-1.28.223-2.598.34-3.942.34-3.906 0-7.586-.982-10.804-2.713L9.5 43.724v8.41l.693.149c1.163.247 2.789.577 4.642.907 3.73.664 8.289 1.31 11.832 1.31 3.542 0 8.1-.646 11.832-1.31l.128-.023-6.113-6.112a7.466 7.466 0 0 1-1.905-3.228Zm4.027-5.258a4.5 4.5 0 0 1 6.364 0l2.357 2.357 1.06 1.061 1.061-1.06 2.357-2.358a4.5 4.5 0 0 1 6.364 6.364l-9.782 9.782-9.781-9.782a4.5 4.5 0 0 1 0-6.364Z"/>
</svg>
)
export default ProfilePassion64