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

const FavouriteColoured64: 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="M29.696 16.38c-4.465-5.302-12.512-5.646-17.413-.744-4.62 4.62-4.62 12.11 0 16.73L31.29 51.373a1 1 0 0 0 1.415 0l19.009-19.009c4.62-4.62 4.62-12.11 0-16.73-4.902-4.901-12.949-4.557-17.414.746l-2.302 2.734-2.303-2.734Z"/>
</svg>
)
export default FavouriteColoured64