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

const ProfilePassion20: FC<ADSIcon>  = 
    ({fill, size = '1.25rem', ...rest}) => (<svg aria-hidden="true" width={size} height={size} {...rest} fill={fill} xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20">
  <path fill-rule="evenodd" d="M5.333 6.25a3 3 0 1 1 6 0 3 3 0 0 1-6 0Zm3-4.5a4.5 4.5 0 1 0 0 9 4.5 4.5 0 0 0 0-9ZM5.376 11.792a.75.75 0 0 0-.628-.057l-2.5.892a.75.75 0 0 0-.498.706v3.334c0 .348.24.65.578.73l.172-.73-.172.73h.003l.009.002.031.008a23.265 23.265 0 0 0 .56.123c.374.08.896.186 1.491.292 1.179.21 2.691.428 3.911.428 1.22 0 2.733-.219 3.911-.428.187-.034.367-.067.537-.1l.57.57a.75.75 0 0 0 1.06 0l3.388-3.389a2.625 2.625 0 0 0-3.712-3.712l-.207.206-.206-.206a2.625 2.625 0 0 0-4.426 1.322 6 6 0 0 1-.915.07 5.886 5.886 0 0 1-2.957-.79Zm4 2.219a7.48 7.48 0 0 1-1.043.072 7.388 7.388 0 0 1-3.398-.822l-1.685.601v2.203c.36.076.863.178 1.435.28 1.163.207 2.567.405 3.648.405.932 0 2.104-.147 3.155-.32l-1.526-1.527a2.616 2.616 0 0 1-.587-.892Zm1.647-1.76a1.124 1.124 0 0 1 1.59 0l.737.737.53.53.53-.53.737-.736a1.125 1.125 0 1 1 1.591 1.59l-2.858 2.859-2.857-2.858a1.125 1.125 0 0 1 0-1.591Z"/>
</svg>
)
export default ProfilePassion20