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

const Euro64: 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="M15.89 25.167C18.781 16.08 27.288 9.5 37.332 9.5a22.39 22.39 0 0 1 12.5 3.788 1.5 1.5 0 0 0 1.668-2.493A25.388 25.388 0 0 0 37.333 6.5c-11.716 0-21.587 7.902-24.574 18.667H8a1.5 1.5 0 1 0 0 3h4.12A25.702 25.702 0 0 0 11.832 32c0 1.303.098 2.583.286 3.833H8a1.5 1.5 0 0 0 0 3h4.759C15.746 49.598 25.617 57.5 37.333 57.5c5.24 0 10.115-1.582 14.168-4.295a1.5 1.5 0 0 0-1.669-2.493A22.388 22.388 0 0 1 37.333 54.5c-10.044 0-18.55-6.581-21.444-15.667H40a1.5 1.5 0 1 0 0-3H15.158A22.649 22.649 0 0 1 14.833 32c0-1.307.111-2.588.325-3.833H40a1.5 1.5 0 0 0 0-3H15.89Z"/>
</svg>
)
export default Euro64