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

const FavouriteColoured24: 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="M11.614 5.74a5.061 5.061 0 1 0-7.45 6.839l7.128 7.128a1 1 0 0 0 1.415 0l7.128-7.128a5.061 5.061 0 1 0-7.45-6.839l-.386.458-.385-.458Z"/>
</svg>
)
export default FavouriteColoured24